footer.php 678 B

1234567891011121314151617181920212223242526272829303132333435
  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 TextBook
  10. */
  11. ?>
  12. </div>
  13. <?php // Get Footer Sidebar
  14. get_sidebar( 'footer' ); ?>
  15. <footer id="colophon" class="site-footer" role="contentinfo">
  16. <div class="site-footer-wrap">
  17. <?php get_template_part( 'components/navigation/navigation', 'bottom' ); ?>
  18. <?php get_template_part( 'components/footer/site', 'info' ); ?>
  19. </div><!-- .site-footer-wrap -->
  20. </footer><!-- .site-footer -->
  21. </div>
  22. <?php wp_footer(); ?>
  23. </body>
  24. </html>