24 lines
500 B
PHP
24 lines
500 B
PHP
|
<?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 Ixion
|
||
|
*/
|
||
|
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
||
|
<?php get_template_part( 'components/footer/widgets' ); ?>
|
||
|
<?php get_template_part( 'components/footer/site', 'info' ); ?>
|
||
|
</footer>
|
||
|
</div>
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|