-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·45 lines (38 loc) · 1.19 KB
/
footer.php
File metadata and controls
executable file
·45 lines (38 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @package FoundationPress
* @since FoundationPress 1.0.0
*/
// TODO Social links
?>
</div><!-- Close container -->
<div class="footer-container">
<span class="honeycomb-overlay honeycomb-overlay-2"></span>
<footer class="footer">
<section class="footer-left">
<?php if ( has_custom_logo() ) : ?>
<?php the_custom_logo(); ?>
<?php else: ?>
<?php bloginfo( 'name' ); ?>
<?php endif; ?>
<p class="footer-social">
<a href="https://www.facebook.com/napoleonbeesupply/">
<span class="footer-social-icon fa fa-facebook-square"></span>
</a>
</p>
<p class="footer-meta">
Copyright 2017, Napoleon Bee Supply, LLC<br/>
Built by <a href="https://realbigmarketing.com" class="footer-rbm-link">Real Big Marketing</a>
</p>
</section>
<?php dynamic_sidebar( 'footer-widgets' ); ?>
</footer>
</div>
</div><!-- Close off-canvas content -->
<?php wp_footer(); ?>
</body>
</html>