27 lines
719 B
PHP
27 lines
719 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 Karuna
|
|
*/
|
|
|
|
?>
|
|
<?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
|
|
<div class="full-width-widget-area widget-area">
|
|
<?php dynamic_sidebar( 'sidebar-5' ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div><!-- #content -->
|
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
|
<?php get_template_part( 'components/footer/footer', 'widgets' ); ?>
|
|
<?php get_template_part( 'components/footer/site', 'info' ); ?>
|
|
</footer>
|
|
</div><!-- #page -->
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|