-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
33 lines (28 loc) · 788 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 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 applied-computer-science
*/
?>
</div><!-- #content -->
<footer id="footer" class="site-footer">
<div class="prefooter">
<div class="container">
<div class="row">
<?php dynamic_sidebar( 'footer' ); ?>
</div>
</div>
</div>
<div class="copyright">
<p>© <?php echo date('Y'); ?> | Developed with <i class="fas fa-heart"></i> by <a class="grey" target="_blank" href="https://github.com/damiandominella">Damian Dominella</a></p>
</div>
</footer><!-- #footer -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>