footer.php 729 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains footer content and the closing of the #main and #page div elements.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fourteen
  9. * @since Twenty Fourteen 1.0
  10. */
  11. ?>
  12. </div><!-- #main -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <?php get_sidebar( 'footer' ); ?>
  15. <div class="site-info">
  16. <?php do_action( 'twentyfourteen_credits' ); ?>
  17. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?></a>
  18. </div><!-- .site-info -->
  19. </footer><!-- #colophon -->
  20. </div><!-- #page -->
  21. <?php wp_footer(); ?>
  22. </body>
  23. </html>