-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
79 lines (75 loc) · 2.14 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<footer>
<section>
<aside>
<div>
<a href="<?php echo get_home_url(get_current_blog_id());?>"><img class="spetex" alt="spetex" src="<?php echo get_theme_file_uri('/images/spetex.jpg') ?>">
<h1><?php bloginfo('name'); ?></a></h1>
</div>
<p>
<q>
<?php bloginfo('description'); ?>
</q>
</p>
</aside>
<nav id="footer-navigation" class="site-navigation footer-navigation" role="navigation">
<?php wp_nav_menu( array(
'theme_location' => 'footerMenuLocation'
)); ?>
<ul class="social">
<li>
<a href="mailto:[email protected]" aria-label="Send me an email."
><i class="fas fa-envelope-square"></i
></a>
</li>
<li>
<a
href="https://spetex-minis.com"
target="_blank"
rel="noopener"
aria-label="Visit my blog."
><i class="fas fa-rss-square"></i
></a>
</li>
<li>
<a
href="https://www.instagram.com/spetex.miniatures/"
target="_blank"
rel="noreferrer"
aria-label="Visit my instagram."
><i class="fab fa-instagram"></i
></a>
</li>
<li>
<a
href="https://www.facebook.com/spetex.minatures/"
target="_blank"
rel="noreferrer"
aria-label="Visit my Facebook Page."
><i class="fab fa-facebook-square"></i
></a>
</li>
<li>
<a
href="https://twitter.com/spetex_minis"
target="_blank"
rel="noreferrer"
aria-label="Visit my twitter account."
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCh6uIKKKDQw-cHyqpnod6xw"
target="_blank"
rel="noreferrer"
aria-label="Visit my YouTube Channel."
><i class="fab fa-youtube-square"></i
></a>
</li>
</ul>
</nav>
</section>
</footer>
<?php wp_footer(); ?>
</body>
</html>