-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·55 lines (49 loc) · 1.77 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
50
51
52
53
54
55
<?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
*/
$admin_email = get_option( 'admin_email' );
?>
</section>
<footer class="footer">
<div class="wrap">
<div class="quarter no-border">
<?php print apply_filters( 'the_content', pure_get_option( 'column-one' ) ); ?>
</div>
<div class="quarter">
<?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'menu_class' => 'nav-menu' ) ); ?>
<?php print apply_filters( 'the_content', pure_get_option( 'column-two' ) ); ?>
</div>
<div class="quarter">
<?php print apply_filters( 'the_content', pure_get_option( 'column-three' ) ); ?>
</div>
<div class="quarter">
<?php print apply_filters( 'the_content', pure_get_option( 'column-four' ) ); ?>
</div>
</div>
</footer>
<div class="colophon">
<div class="wrap">
<div class="two-fifth">
<img src="<?php bloginfo('template_url') ?>/img/logo-ncua.png" class="ncua" /> Your savings are federally insured to at least $250,000, and backed by the full faith and credit of the United States Government.
</div>
<div class="two-fifth">
<img src="<?php bloginfo('template_url') ?>/img/logo-equal-housing.png" class="equal-housing" /> Equal Housing Lender - We do business in accordance with the Federal Fair Housing Law and the Equal Housing Opportunity Act.
</div>
<div class="one-fifth notices-menu">
<a href="/privacy-policy/">Privacy Policy</a><br>
<a href="/notices/">Notices & Policies</a>
</div>
</div>
</div>
<div class="copyright group">Copyright © <?php print date( 'Y' ) ?></div>
</div><!-- #container -->
<?php wp_footer(); ?>
</body>
</html>