themes-wordpress/libre-2/footer.php

66 lines
1.6 KiB
PHP
Raw Normal View History

2018-02-27 03:21:36 +00:00
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Libre 2
*/
?>
</div><!-- #content -->
2018-02-27 03:21:36 +00:00
<footer id="colophon" class="site-footer" role="contentinfo">
<?php if ( is_active_sidebar( 'sidebar-2' ) || is_active_sidebar( 'sidebar-3' ) || is_active_sidebar( 'sidebar-4' ) ) : ?>
2018-02-27 03:21:36 +00:00
<div class="footer-widgets clear">
2018-02-27 03:21:36 +00:00
<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
2018-02-27 03:21:36 +00:00
<div class="widget-area">
2018-02-27 03:21:36 +00:00
<?php dynamic_sidebar( 'sidebar-2' ); ?>
2018-02-27 03:21:36 +00:00
</div><!-- .widget-area -->
2018-02-27 03:21:36 +00:00
<?php endif; ?>
2018-02-27 03:21:36 +00:00
<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
2018-02-27 03:21:36 +00:00
<div class="widget-area">
2018-02-27 03:21:36 +00:00
<?php dynamic_sidebar( 'sidebar-3' ); ?>
2018-02-27 03:21:36 +00:00
</div><!-- .widget-area -->
2018-02-27 03:21:36 +00:00
<?php endif; ?>
2018-02-27 03:21:36 +00:00
<?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
2018-02-27 03:21:36 +00:00
<div class="widget-area">
2018-02-27 03:21:36 +00:00
<?php dynamic_sidebar( 'sidebar-4' ); ?>
2018-02-27 03:21:36 +00:00
</div><!-- .widget-area -->
2018-02-27 03:21:36 +00:00
<?php endif; ?>
2018-02-27 03:21:36 +00:00
</div><!-- .footer-widgets -->
2018-02-27 03:21:36 +00:00
<?php endif; ?>
2018-02-27 03:21:36 +00:00
<div class="site-info">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'libre-2' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'libre-2' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'libre-2' ), 'Libre 2', '<a href="http://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
</div><!-- .site-wrapper -->
2018-02-27 03:21:36 +00:00
<?php wp_footer(); ?>
</body>
</html>