-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
66 lines (55 loc) · 2.54 KB
/
footer.php
File metadata and controls
66 lines (55 loc) · 2.54 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
61
62
63
64
65
66
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package nbr
*/
?>
</div><!-- #main -->
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup" data-selector="stay-in-touch">
<form action="http://nbrmp.us6.list-manage.com/subscribe/post?u=a51129fca8202da905dcacba3&id=c1b6f91d79" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button closebtn">
</form>
</div>
<!--End mc_embed_signup-->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<a href="<?php echo site_url(); ?>">National Board of Review © 2013 </a>
</div><!-- .site-info -->
<nav id="footer-navigation" class="nav navigation-footer clear" role="navigation">
<h1 class="menu-toggle"><a href="#page" alt="Menu">Menu</a></h1>
<div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'nbr' ); ?>"><?php _e( 'Skip to content', 'nbr' ); ?></a></div>
<?php wp_nav_menu( array( 'theme_location' => 'column_one' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'column_two' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'column_three' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'column_four' ) ); ?>
</nav><!-- #site-navigation -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18375348-2']);
_gaq.push(['_setDomainName', 'nationalboardofreview.org']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>