-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfooter.php
49 lines (43 loc) · 1.51 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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
*/
?>
</section>
<div id="footer-container">
<footer id="footer" class="footer">
<?php do_action( 'foundationpress_before_footer' ); ?>
<?php dynamic_sidebar( 'footer-widgets' ); ?>
<article class="column medium-4">
<h3 class="footer__heading">Donate</h3>
<p>Donations always welcome!</p>
<a role="button" class="download large button sites-button" href="/donate">Donate to FCBC</a>
</article>
<article class="column medium-4">
<h3 class="footer__heading">Contact Us</h3>
<p>
1501 North College Avenue
<br> Fort Collins, CO 80524
<br> (970) 484-3804
</p>
<a href="https://www.facebook.com/FortCollinsBikeCoOp" target="_blank"><i class="fa fa-3x fa-facebook-square"></i></a>
<a href="https://twitter.com/fcbikecoop" target="_blank"><i class="fa fa-3x fa-twitter-square"></i></a>
</article>
<?php do_action( 'foundationpress_after_footer' ); ?>
</footer>
</div>
<?php do_action( 'foundationpress_layout_end' ); ?>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) == 'offcanvas' ) : ?>
</div><!-- Close off-canvas wrapper inner -->
</div><!-- Close off-canvas wrapper -->
</div><!-- Close off-canvas content wrapper -->
<?php endif; ?>
<?php wp_footer(); ?>
<?php do_action( 'foundationpress_before_closing_body' ); ?>
</body>
</html>