-
Notifications
You must be signed in to change notification settings - Fork 39
/
footer.php
44 lines (29 loc) · 905 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
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* Footer Template
*
* Contains the closing of the "main" div and all content after.
*
* @package Scaffolding
*/
?>
<?php do_action( 'scaffolding_before_content_end' ); ?>
</div><?php // END #content. ?>
<footer id="colophon" class="footer" role="contentinfo">
<?php get_sidebar(); ?>
<div id="inner-footer" class="container py-3">
<?php if ( has_nav_menu( 'footer-nav' ) ) : ?>
<nav role="navigation" aria-label="<?php esc_attr_e( 'Footer Navigation', 'scaffolding' ); ?>">
<?php scaffolding_footer_nav(); ?>
</nav>
<?php endif; ?>
<p class="source-org copyright mb-0"><?php echo esc_html( '© ' . gmdate( 'Y' ) . ' ' . get_bloginfo( 'name' ) ); ?></p>
</div>
</footer>
<p id="back-top">
<a href="#top"><i class="fas fa-angle-up"></i></a>
</p>
</div><?php // END #container. ?>
<?php wp_footer(); ?>
</body>
</html>