Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (22 sloc)
552 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<footer class="container-fluid"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<?php dynamic_sidebar( 'footer-left' ); ?> | |
</div> | |
<div class="col-sm-4"> | |
<?php dynamic_sidebar( 'footer-middle' ); ?> | |
</div> | |
<div class="col-sm-4"> | |
<?php dynamic_sidebar( 'footer-right' ); ?> | |
</div> | |
</div> | |
<div class="row copyright"> | |
© <?php echo esc_html( date( 'Y' ) ) . ' ' . esc_html( get_bloginfo( 'name' ) ); ?>. | |
All Rights Reserved. | |
</div> | |
</div> | |
</footer> | |
<?php wp_footer(); ?> | |
</body> | |
</html> |