site-theme/footer.php
Kyle Keevill 934ff0b8d8
Style and layout changes for v1 of website
Changed color palette to fit logo, adjusted content width, changed active navigation decorator from triangle to circle to match logo, updated screenshot and various other minor changes.
2024-10-13 22:21:49 -04:00

26 lines
859 B
PHP

</div><!-- /.row -->
<footer class="blog-footer row">
<?php //dynamic_sidebar( 'footer-copyright-text' ); ?>
<?php //if ( is_active_sidebar( 'footer-copyright-text' ) ) { dynamic_sidebar( 'footer-copyright-text' ); } ?>
<div class="footer">
<ul id="footer-menu" class=" list-inline">
<?php
wp_nav_menu([
'theme_location' => 'footer-menu',
'menu_class' => 'list-inline',
'menu_id' => 'footer-menu',
'container' => false,
]);
?>
</div>
<div class="">
<p class="copyright">Copyright &copy; <?php echo date('Y');?> AspirePress. Theme courtesy <a href="https://akrabat.com/">Rob Allen</a>. All rights reserved.</p>
</div>
</footer>
</div><!-- /.container -->
<?php wp_footer(); ?>
</body>
</html>