forked from UCF/Main-Site-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter-gray.php
27 lines (27 loc) · 864 Bytes
/
footer-gray.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
</div><!-- .container -->
<footer class="site-footer">
<div class="container">
<p class="footer-title">University of Central Florida</p>
<?php echo display_social_menu(); ?>
</div>
<div id="footer-navwrap" role="navigation" class="screen-only">
<?=wp_nav_menu(array(
'theme_location' => 'footer-menu',
'container' => 'false',
'menu_class' => 'menu list-unstyled list-inline text-center',
'menu_id' => 'footer-menu',
'fallback_cb' => false,
'depth' => 1,
'walker' => new Bootstrap_Walker_Nav_Menu()
));
?>
</div>
<p class="ucf-footer-address">
4000 Central Florida Blvd. Orlando, Florida, 32816 | <a href="tel:4078232000">407.823.2000</a>
<br>
© <a href="http://www.ucf.edu/">University of Central Florida</a>
</p>
</footer>
</body>
<?php echo footer_(); ?>
</html>