-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
31 lines (28 loc) · 1.11 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Matysiewicz_Studio
*/
?>
<footer id="colophon" class="site-footer">
<div class="site-info">
<span class="left"><?php echo date('Y'); ?> © matysiewicz.studio</span>
<span class="right">
<div><a href="https://github.com/lukasz-matysiewicz" target="_blank" rel="nofollow">Github</a></div>
<div><a href="https://www.linkedin.com/in/matysiewicz" target="_blank" rel="nofollow">Linkedin</a></div>
<div><a href="https://www.facebook.com/matysiewiczstudio" target="_blank" rel="nofollow">Facebook</a></div>
<div><a href="https://www.youtube.com/c/lukaszmatysiewicz" target="_blank" rel="nofollow">Youtube</a></div>
<div><a href="https://www.behance.net/matysiewiczstudio" target="_blank" rel="nofollow">Behance</a></div>
</span>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
<?php include('integrations.html'); ?>
</body>
</html>