-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
59 lines (50 loc) · 1.56 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
54
55
56
57
58
59
<?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 Público
*/
?>
<?php if ( ! is_front_page() ) : ?>
</div><!-- .row -->
<?php endif; ?>
</div><!-- #content -->
<?php get_sidebar( 'content-bottom' ); ?>
<?php get_sidebar( 'call-to-action' );?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( 'footer' ); ?>
<div class="site-info site__section">
<div class="row">
<div class="medium-12 columns">
<div class="medium-6 large-8 columns">
<div class="site-credits">
<?php echo get_theme_mod( 'publico_footer_text' ); ?>
</div>
</div>
<div class="medium-6 large-4 columns">
<?php if ( has_nav_menu( 'social' ) ) : ?>
<nav class="site-social social-navigation medium-text-right" role="navigation" aria-label='<?php _e( 'Footer Social Links Menu', 'publico' ); ?>'>
<?php
wp_nav_menu( array(
'theme_location' => 'social',
'menu_class' => 'social-links-menu',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
) );
?>
</nav><!-- .social-navigation -->
<?php endif; ?>
</div>
</div>
</div>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>