footer.php 633 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains the closing of the #content div and all content after.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fifteen
  9. * @since Twenty Fifteen 1.0
  10. */
  11. ?>
  12. </div><!-- .site-content -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <div class="site-info">
  15. <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyfifteen' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?></a>
  16. </div><!-- .site-info -->
  17. </footer><!-- .site-footer -->
  18. </div><!-- .site -->
  19. <?php wp_footer(); ?>
  20. </body>
  21. </html>