-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
executable file
·52 lines (37 loc) · 1.81 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
</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" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/fb.svg)" title="Facebook" itemprop="image"></i></a>
<a href="https://twitter.com/<?php echo social_username; ?>" title="Twitter" rel="me" target="_blank" itemprop="sameAs"><i class="icon" style="mask:url(images/tw.svg)" title="Twitter" itemprop="image"></i></a>
<a href="https://www.instagram.com/<?php echo social_username; ?>/" title="Instagram" rel="me" 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" 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" 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 site_title; ?>
</div>
</footer>
</div>
<script>
jQuery(document).ready(function($) {
$(".menu-toggle").on("keypress click", function(e) {
if (e.which == 13 || e.type === "click") {
e.preventDefault();
$("#menu").toggleClass("toggled");
}
});
$(document).keyup(function(e) {
if (e.keyCode == 27) {
if ($("#menu").hasClass("toggled")) {
$("#menu").toggleClass("toggled");
}
}
});
$("a[href^='http']").not("a[href*='<?php echo $_SERVER['HTTP_HOST']; ?>'], a[href$='.jpg|.jpeg|.jfif|.pjpeg|.pjp|.png|.apng|.gif|.svg|.webp|.avif']").attr("target", "_blank");
});
</script>
</body>
</html>