2024-07-04 09:17:35 +00:00
|
|
|
<?php declare( strict_types = 1 ); ?>
|
2019-07-15 16:13:42 +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
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2019-07-19 03:37:13 +00:00
|
|
|
* @subpackage Varia
|
2019-07-15 16:13:42 +00:00
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
|
2021-01-19 12:02:35 +00:00
|
|
|
<?php get_template_part( 'template-parts/footer/footer', 'content' ); ?>
|
2019-07-15 16:13:42 +00:00
|
|
|
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|