forked from vitathemes/notation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
53 lines (48 loc) · 1.43 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
53
<?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 Wp_notes
*/
?>
<footer id="colophon" class="c-footer site-footer">
<div class="c-footer__bottom site-info">
<div class="u-default-max-width">
<div class="c-footer__grid">
<div class="c-footer__copyright">
<?php if ( get_theme_mod( 'show_branding_in_footer', true ) ) : ?>
<div class="c-footer__branding s-footer-branding">
<?php wp_notes_branding(); ?>
</div>
<?php endif; ?>
<div class="c-footer__copyright__text">
<?php
wp_notes_footer_credit_text();
wp_notes_footer_copyright_text();
?>
</div>
</div>
<?php
if ( has_nav_menu( 'menu-2' ) ) {
wp_nav_menu(
array(
'theme_location' => 'menu-2',
'menu_class' => 'c-nav c-nav--footer s-nav js-nav',
'container' => '',
)
);
}
?>
</div>
</div><!-- .site-info -->
</div>
</footer><!-- #colophon -->
</main><!-- #main -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>