kril-theme/footer.php

50 lines
1 KiB
PHP
Raw Normal View History

2018-08-05 11:56:04 +03:00
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package understrap
*/
$the_theme = wp_get_theme();
$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">
<small>Гордо продолжаем конкурс с 2006 года. Подробности собраны <a target="_blank" href="https://ifwiki.ru/index.php?title=%D0%9A%D0%A0%D0%98%D0%9B&redirect=no">на IFWiki.</a></small>
</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>