-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
23 lines (21 loc) · 912 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* The template for displaying the footer.
*
* @package blm_basic
*/
?>
<footer id="footer">
<div class="wrap">
<h4><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h4>
<?php wp_nav_menu( array( 'theme_location' => 'footer',
'menu_class' => 'footer-menu'
) ); ?>
<img class="laser-symbol" src="<?php echo get_template_directory_uri(); ?>/images/sailing-laser-class-symbol-200.png" alt="Laser Sailing Class Symbol" />
<p class="copyright">© <?php echo date( 'Y' ); ?> <?php bloginfo( 'name' ); ?> </p>
<p class="copyright">Web design donated by <a href="http://robertdall.com/">Robert Dall</a> ~ Hosting at <a rel="nofollow" href="http://robertdall.com/hosting">InMotion Hosting</a> ~ Powered by <a href="http://wordpress.org">WordPress</a> and the wind.</p>
</div> <!-- #wrap -->
</footer>
<?php wp_footer(); ?>
</body>
</html>