-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
119 lines (119 loc) · 4.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<div id="footer" style="<?=get_theme_option('footer_bg_color') ? 'background-color:'.get_theme_option('footer_bg_color').' !important;' : ''?>">
<div id="footer-navwrap" class="row">
<?if(/*get_theme_option('home_page_theme') != '2'*/true){ ?>
<div class="hidden-sm hidden-xs footerCol <?=get_theme_option('home_page_theme') == '2' ? 'hidden-md hidden-lg' : 'col-md-3'?>">
<?=wp_nav_menu(array(
'theme_location' => 'footer-outer-left-collapse',
//'menu' => 'footer-audience',
'menu_id' => 'footer-outer-left-collapse',
'container' => 'false',
'menu_class' => 'menu list-unstyled screen-only',
'fallback_cb' => false,
'depth' => 1,
'walker' => new Bootstrap_Walker_Nav_Menu()
));
?>
</div>
<div class="hidden-sm hidden-xs footerCol <?=get_theme_option('home_page_theme') == '2' ? 'hidden-md hidden-lg' : 'col-md-3'?>">
<?=wp_nav_menu(array(
'theme_location' => 'footer-inner-left-collapse',
//'menu' => 'footer-quick-links',
'container' => 'false',
'menu_class' => 'menu list-unstyled',
'menu_id' => 'footer-inner-left-collapse',
'fallback_cb' => false,
'depth' => 1,
'walker' => new Bootstrap_Walker_Nav_Menu()
));
?>
</div>
<?}?>
<div id="footer-logo" class="col-xs-15 col-sm-5 col-sm-push-5 <?=get_theme_option('home_page_theme') == '2' ? '' : 'col-md-push-0 col-md-3'?>">
<a href="<?= site_url() ?>">
<img id="tbhcFooterLogo" src="<?php bloginfo('stylesheet_directory'); ?>/static/img/WebsiteFooterShort.png" alt="The Burnett Honors College">
</img>
</a>
<?=wp_nav_menu(array(
'theme_location' => 'social-links',
'container' => 'div',
'container_id' => 'social-menu-wrap',
'menu_class' => 'menu list-unstyled list-inline screen-only',
'menu_id' => 'social-menu',
'depth' => 1,
));
?>
</div>
<div class="footerCol col-xs-half col-sm-5 col-sm-pull-5 <?=get_theme_option('home_page_theme') == '2' ? 'opaRight' : 'col-md-pull-0 col-md-3'?>">
<?=wp_nav_menu(array(
'theme_location' => 'footer-inner-right',
//'menu' => 7,
'menu_id' => 'footer-inner-right',
'container' => 'div',
'menu_class' => 'menu list-unstyled screen-only',
//'menu_id' => 'department-sites',
'depth' => 1,
));
if(get_theme_option('home_page_theme') == '2'){?>
<div id="contactInfo">
<div class="location-title">
Contact US
</div>
<div class="adr">
<div class="tel">
<a href="tel:4078230851">p. 407.823.0851</a>
</div>
<div class="email">
<a href="mailto:[email protected]">e. [email protected]</a>
</div>
</div>
</div>
<?}?>
</div>
<div class="footerCol col-xs-half col-sm-5 <?=get_theme_option('home_page_theme') == '2' ? 'opaLeft' : 'col-md-3'?>">
<div id="contactInfo" role="contentinfo" class="vcard">
<?if(get_theme_option('home_page_theme') == '2'){?>
<div class="location-title">
Location
<span class="street-address">Trevor Colbourn Hall, Suite 248D</span>
<span class="locality">Orlando,</span>
<span class="region">FL</span>
<span class="postal-code">32816</span>
</div>
<?}?>
<a href="https://honors.ucf.edu" class="print-noexpand fn org url">
<span class="organization-name">The Burnett Honors College</span>
</a>
<div class="adr">
<span class="street-address">P.O. Box 161800</span>
<div>
<span class="locality">Orlando,</span>
<span class="region">FL</span>
<span class="postal-code">32816</span>
</div>
<?if(get_theme_option('home_page_theme') != '2'){?>
<div class="tel">
<a href="tel:4078232076">407.823.2076</a>
</div>
<div class="email">
<a href="mailto:[email protected]">[email protected]</a>
</div>
<?}?>
</div>
<!--<br/>
<a href="<?=site_url()?>/feedback/">Comments and Feedback</a> | ©
<a href="<?=site_url()?>" class="print-noexpand fn org url">
<span class="organization-name">The Burnett Honors College</span>
</a>-->
</div>
</div>
</div>
</div>
<div id="subfooter" style="<?=get_theme_option('footer_bg_color') ? 'background-color:'.get_theme_option('footer_bg_color').' !important;' : ''?>">
<?php
//custom_breadcrumbs();
?>
</div>
</div><!-- .container -->
</body>
<?="\n".footer_()."\n"?>
</html>