footer.php 834 B

123456789101112131415161718192021222324252627
  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 Publication
  8. */
  9. ?>
  10. </div><!-- #content -->
  11. <footer id="colophon" class="site-footer" role="contentinfo">
  12. <div class="site-info">
  13. <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'publication' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'publication' ), 'WordPress' ); ?></a>
  14. <span class="genericon genericon-wordpress sep"></span>
  15. <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'publication' ), 'Publication', '<a href="https://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?>
  16. </div><!-- .site-info -->
  17. </footer><!-- #colophon -->
  18. </div><!-- #page -->
  19. </div><!-- #body-wrapper -->
  20. <?php wp_footer(); ?>
  21. </body>
  22. </html>