mirror of
https://gh.wpcy.net/https://github.com/aspirepress/site-theme.git
synced 2026-07-15 11:26:29 +08:00
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.
26 lines
859 B
PHP
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 © <?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>
|