2024-07-08 08:47:14 +00:00
|
|
|
<?php declare( strict_types = 1 ); ?>
|
2020-06-10 16:58:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying the footer
|
|
|
|
*
|
|
|
|
* Contains the closing of the #content div and all content after.
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
|
|
*
|
2020-07-29 17:44:19 +00:00
|
|
|
* @package Seedlet
|
2020-06-10 16:58:55 +00:00
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
|
2020-08-27 14:45:39 +00:00
|
|
|
<footer id="colophon" class="site-footer default-max-width" role="contentinfo" aria-label="<?php esc_attr_e( 'Footer', 'seedlet' ); ?>">
|
2021-01-08 16:42:41 +00:00
|
|
|
<?php get_template_part( 'template-parts/footer/footer-content' ); ?>
|
2020-06-10 16:58:55 +00:00
|
|
|
</footer><!-- #colophon -->
|
|
|
|
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|