barebones/footer.php

12 lines
474 B
PHP
Raw Normal View History

2015-10-14 12:10:55 +02:00
<footer class="footer" role="contentinfo">
<div class="container">
2018-07-17 16:14:50 +02:00
<nav class="footer__navigation">
<?php wp_nav_menu(['theme_location' => 'footer', 'menu_class' => 'nav nav--footer']); ?>
2017-12-15 13:51:21 +01:00
</nav>
2019-01-08 11:52:31 +01:00
<p class="footer__copyright">&copy; <?php echo get_bloginfo( 'name' ); ?> <?php echo date('Y'); ?></p>
2015-10-14 12:10:55 +02:00
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>