footer.php 589 B

1234567891011121314151617181920212223242526
  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 Seedlet
  10. * @since 1.0.0
  11. */
  12. ?>
  13. </div><!-- #content -->
  14. <footer id="colophon" class="site-footer default-max-width" role="contentinfo" aria-label="<?php esc_attr_e( 'Footer', 'seedlet' ); ?>">
  15. <?php get_template_part( 'template-parts/footer/footer-content' ); ?>
  16. </footer><!-- #colophon -->
  17. </div><!-- #page -->
  18. <?php wp_footer(); ?>
  19. </body>
  20. </html>