-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfooter.php
32 lines (27 loc) · 819 Bytes
/
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
</div><!-- Row End -->
</div><!-- Container End -->
<div class="full-width footer-widget">
<div class="row">
<?php dynamic_sidebar("Footer"); ?>
</div>
</div>
<footer class="full-width" role="contentinfo">
<div class="row">
<div class="large-12 columns">
<?php wp_nav_menu(array('theme_location' => 'utility', 'container' => false, 'menu_class' => 'inline-list')); ?>
</div>
</div>
<div class="row love-reverie">
<div class="large-12 columns">
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. <?php _e('Made with Love in','reverie'); ?> <a href="http://themefortress.com/reverie/" rel="nofollow" title="Reverie Framework">Reverie</a>.</p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<script>
(function($) {
$(document).foundation();
})(jQuery);
</script>
</body>
</html>