-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
51 lines (47 loc) · 1.38 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
<?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
*/
?>
</section>
<footer class="footer">
<div class="wrap">
<div class="column first">
<p><strong>HERNDON ELEMENTARY PTA</strong><br>
630 Dranesville Rd.<br>
Herndon, VA 20170<br>
703-326-3100</p>
</div>
<div class="column">
<nav role="navigation">
<?php wp_nav_menu( array(
'theme_location' => 'footer-left',
'menu_class' => 'nav-menu' )
); ?>
</nav>
</div>
<div class="column">
<nav role="navigation">
<?php wp_nav_menu( array(
'theme_location' => 'footer-right',
'menu_class' => 'nav-menu' )
); ?>
</nav>
</div>
<div class="column social">
<a href="https://twitter.com/herndonespta" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-twitter.png"></a>
<a href="https://www.facebook.com/HERNDONESPTA/" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-facebook.png"></a>
<a href="https://www.instagram.com/herndonespta/" target="_blank"><img src="<?php bloginfo( 'template_url' ); ?>/img/social-instagram.png"></a>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>