-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·42 lines (27 loc) · 1.48 KB
/
footer.php
File metadata and controls
executable file
·42 lines (27 loc) · 1.48 KB
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
</article>
</main>
<?php include( 'sidebar.php' ); ?>
</div>
<footer id="footer">
<div id="social">
<a href="https://www.facebook.com/<?php echo social_username; ?>/" title="Facebook" rel="me noopener" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/fb.svg)" title="Facebook" itemprop="image"></i></a>
<a href="https://x.com/<?php echo social_username; ?>" title="X" rel="me noopener" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/x.svg)" title="X" itemprop="image"></i></a>
<a href="https://www.instagram.com/<?php echo social_username; ?>/" title="Instagram" rel="me noopener" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/ig.svg)" title="Instagram" itemprop="image"></i></a>
<a href="https://www.pinterest.com/<?php echo social_username; ?>/" title="Pinterest" rel="me noopener" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/pn.svg)" title="Pinterest" itemprop="image"></i></a>
<a href="https://www.youtube.com/<?php echo social_username; ?>" title="YouTube" rel="me noopener" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/yt.svg)" title="YouTube" itemprop="image"></i></a>
</div>
<div id="copyright">
© <?php echo date( 'Y' ); ?> <?php echo safe( site_title, 'html' ); ?>
</div>
</footer>
</div>
<script>
if ( typeof lucide !== "undefined" ) {
lucide.createIcons();
}
if ( typeof simpleIcons !== "undefined" ) {
simpleIcons.replace();
}
</script>
</body>
</html>