footer.php 863 B

1234567891011121314151617181920212223242526272829
  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. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package Rebalance
  10. */
  11. ?>
  12. <footer id="colophon" class="site-footer" role="contentinfo">
  13. <div class="site-info">
  14. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'rebalance' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'rebalance' ), 'WordPress' ); ?></a>
  15. <br>
  16. <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'rebalance' ), 'Rebalance', '<a href="http://wordpress.com/themes/" rel="designer">WordPress.com</a>' ); ?>
  17. </div><!-- .site-info -->
  18. </footer><!-- #colophon -->
  19. </div><!-- .col-width -->
  20. </div><!-- #content -->
  21. </div><!-- #page -->
  22. <?php wp_footer(); ?>
  23. </body>
  24. </html>