-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
60 lines (51 loc) · 1.88 KB
/
footer.php
File metadata and controls
60 lines (51 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
$color = get_cmb_value( 'large-title-color' );
if ( empty( $color ) ) $color = 'forest';
?>
</div>
</section>
<footer class="footer bg-<?php print $color ?>">
<div class="wrap">
<div class="column first">
<h3>Connect With Us</h3>
<p class="address">22 Inverness Cntr Pky, #200<br>
Birmingham, Alabama 35242</p>
<p class="address">3692 Coolidge Court<br>
Tallahassee, Florida 32311</p>
<p><a href="tel:8662310545">866.231.0545</a></p>
<p class="address">6705 Sugarloaf Pky, #200<br>
Duluth, Georgia</p>
<div class="social">
<a href="https://twitter.com/LeagueofSECUs" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-twitter.png"></a><a href="https://www.facebook.com/LeagueofSoutheasternCreditUnions?ref=hl" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-facebook.png"></a><a href="https://www.linkedin.com/company/1007350?trk=tyah&trkInfo=clickedVertical%3Acompany%2Cidx%3A1-1-1%2CtarId%3A1428961608364%2Ctas%3Amy+leverage" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-linkedin.png"></a><a href="https://www.youtube.com/user/LeagueofSECUs" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-youtube.png"></a>
</div>
</div>
<div class="column">
<h3>Links</h3>
<nav role="navigation">
<?php wp_nav_menu( array(
'theme_location' => 'footer',
'menu_class' => 'nav-menu' )
); ?>
</nav>
</div>
<div class="column">
<h3>Sign Up For News</h3>
<?php print do_shortcode( '[snippet slug="subscribe" /]' ); ?>
</div>
</div>
</footer><!-- #colophon -->
<?php
do_interstitial();
wp_footer();
?>
</body>
</html>