footer.php 627 B

123456789101112131415161718192021222324252627
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. /**
  4. * The template for displaying the footer
  5. *
  6. * Contains the closing of the #content div and all content after.
  7. *
  8. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  9. *
  10. * @package Seedlet
  11. * @since 1.0.0
  12. */
  13. ?>
  14. </div><!-- #content -->
  15. <footer id="colophon" class="site-footer default-max-width" role="contentinfo" aria-label="<?php esc_attr_e( 'Footer', 'seedlet' ); ?>">
  16. <?php get_template_part( 'template-parts/footer/footer-content' ); ?>
  17. </footer><!-- #colophon -->
  18. </div><!-- #page -->
  19. <?php wp_footer(); ?>
  20. </body>
  21. </html>