-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
33 lines (30 loc) · 930 Bytes
/
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
<?php
/**
* The footer template
*
*
* @package delighted_calligraphy
*/
?>
</div>
<!-- #page -->
<footer id="footer" class="footer" role="contentinfo">
<div class="copyright">
© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>
</div>
<div class="social-footer">
<a href="https://www.instagram.com/delightedcalligraphy/?hl=en" target="_blank">
<?php get_template_part( 'assets/images/instagram.svg' ); ?>
</a>
<a href="https://www.pinterest.com/mabowker/" target="_blank">
<?php get_template_part( 'assets/images/pinterest.svg' ); ?>
</a>
<a href="mailto:[email protected]" target="_blank">
<?php get_template_part( 'assets/images/mail.svg' ); ?>
</a>
</div>
<p>made with ♥ by<a href="https://www.cgstudio.co/" target="_blank" rel="nofollow"> CG Studio</a></p>
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</body>
</html>