1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * The template for displaying the footer.
- *
- * Contains the closing of the #content div and all content after
- *
- * @package Canard
- */
- ?>
- </div><!-- #content -->
- <?php get_sidebar( 'footer' ); ?>
- <?php if ( has_nav_menu( 'footer' ) ) : ?>
- <nav class="footer-navigation" role="navigation">
- <?php
- wp_nav_menu( array(
- 'theme_location' => 'footer',
- 'depth' => 1,
- ) );
- ?>
- </nav><!-- .footer-navigation -->
- <?php endif; ?>
- <?php if ( has_nav_menu( 'secondary' ) ) : ?>
- <nav class="bottom-navigation" role="navigation">
- <?php
- wp_nav_menu( array(
- 'theme_location' => 'secondary',
- 'depth' => 1,
- ) );
- ?>
- </nav><!-- .bottom-navigation -->
- <?php endif; ?>
- <?php if ( has_nav_menu( 'social' ) ) : ?>
- <nav class="social-navigation bottom-social" role="navigation">
- <?php
- wp_nav_menu( array(
- 'theme_location' => 'social',
- 'link_before' => '<span class="screen-reader-text">',
- 'link_after' => '</span>',
- 'depth' => 1,
- ) );
- ?>
- </nav><!-- .social-navigation -->
- <?php endif; ?>
- <footer id="colophon" class="site-footer" role="contentinfo">
- <div id="site-info" class="site-info">
- <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'canard' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'canard' ), 'WordPress' ); ?></a>
- <span class="genericon genericon-wordpress sep"></span>
- <?php printf( __( 'Theme: %1$s by %2$s.', 'canard' ), 'Canard', '<a href="https://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?>
- </div><!-- #site-info -->
- </footer><!-- #colophon -->
- </div><!-- #page -->
- <?php wp_footer(); ?>
- </body>
- </html>
|