barebones/footer.php

12 lines
430 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>
&copy; <?php bloginfo('name'); ?> <?php echo date('Y'); ?>
2015-10-14 12:10:55 +02:00
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>