15 lines
571 B
PHP
15 lines
571 B
PHP
<?php roots_footer_before(); ?>
|
|
<footer id="content-info" class="<?php global $roots_options; echo $roots_options['container_class']; ?>" role="contentinfo">
|
|
<?php roots_footer_inside(); ?>
|
|
<div class="container">
|
|
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Footer") ) : ?>
|
|
<?php endif; ?>
|
|
<p class="copy"><small>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?></small></p>
|
|
</div>
|
|
</footer>
|
|
<?php roots_footer_after(); ?>
|
|
</div><!-- /#wrap -->
|
|
<?php wp_footer(); ?>
|
|
<?php roots_footer(); ?>
|
|
</body>
|
|
</html>
|