49 lines
829 B
PHP
49 lines
829 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the footer.
|
|
*
|
|
* Contains the closing of the #content div and all content after
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
|
?>
|
|
|
|
<?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
|
|
|
|
<div class="wrapper" id="wrapper-footer">
|
|
|
|
<div class="<?php echo esc_attr( $container ); ?>">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<footer class="site-footer" id="colophon">
|
|
|
|
<div class="site-info">
|
|
|
|
<?php understrap_site_info(); ?>
|
|
|
|
</div><!-- .site-info -->
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!--col end -->
|
|
|
|
</div><!-- row end -->
|
|
|
|
</div><!-- container end -->
|
|
|
|
</div><!-- wrapper end -->
|
|
|
|
</div><!-- #page we need this extra closing tag here -->
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|