barebones/footer.php
2018-07-17 15:14:50 +01:00

11 lines
430 B
PHP
Executable file

<footer class="footer" role="contentinfo">
<div class="container">
<nav class="footer__navigation">
<?php wp_nav_menu(['theme_location' => 'footer', 'menu_class' => 'nav nav--footer']); ?>
</nav>
&copy; <?php bloginfo('name'); ?> <?php echo date('Y'); ?>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>