-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
136 lines (119 loc) · 5.16 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
/**
* @package WordPress
* @subpackage Coraline
* @since Coraline 1.0
*
* CHANGE FOR MINIMAKERFAIRE THEME: Added MiniMakerFaire theme name, left the Coraline acknowledgement
*/
?>
<?php //echo do_shortcode("[wpv-post-body view_template='Footer2']") ?>
<section class="cta-panel" style="margin-top:40px"><div class="container">
<div class="row text-center">
<div class="col-xs-12">
<h3><a href="<?php echo mfo_footer_cta_url();?>"><?php echo mfo_footer_cta_text()?> <i class="fa fa-chevron-right" aria-hidden="true"></i></a></h3>
</div>
</div>
</div>
</section>
<footer class="gmf-footer">
<div class="container">
<div class="row padbottom">
<div class="col-sm-6 footer-right-border">
<div class="footer-logo-div">
<?php
$custom_logo_id = get_theme_mod( 'custom_logo' );
$image = wp_get_attachment_image_src( $custom_logo_id , 'full' );
?>
<a href="/">
<img class="img-responsive footer-logos footer-local-logo" src="<?php echo $image[0]; ?>" alt="<?php echo get_bloginfo() ?>">
</a>
</div>
<?php wp_nav_menu ( array('theme_location' => 'footer-local-menu' ,
'menu_id' => 'menu-footer-menu',
'menu_class' => 'list-unstyled')); ?>
<div class="social-network-container">
<ul class="social-network social-circle">
<li>
<a href="https://www.facebook.com/makerfaireorlando/" class="icoFacebook" title="Facebook" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li><li>
<a href="https://twitter.com/orlmakerfaire" class="icoTwitter" title="Twitter" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li><li>
<a href="https://www.instagram.com/makerfaireorlando/" class="icoInstagram" title="Instagram" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</li> </ul>
</div>
</div>
<div class="col-sm-6 footer-right hidden-xs">
<div class="footer-logo-div">
<a href="https://makerfaire.com/" target="_blank">
<img class="img-responsive footer-logos" src="//global.makerfaire.com/wp-content/themes/MiniMakerFaire/img/Maker-Faire-Logo.png" alt="Maker Faire logo">
</a>
</div>
<div class="row">
<div class="col-xs-6">
<ul class="list-unstyled">
<li>
<a href="https://makerfaire.com/makerfairehistory/" target="_blank">About Maker Faire</a>
</li>
<li>
<a href="https://makerfaire.com/map/" target="_blank">Find a Faire Near You</a>
</li>
<li>
<a href="https://makerfaire.com/be-a-maker/" target="_blank">Be a Maker</a>
</li>
<li>
<a href="https://help.makermedia.com/hc/en-us/categories/200333245-Maker-Faire" target="_blank">Maker Faire FAQs</a>
</li>
</ul>
</div>
<div class="col-xs-6 footer-no-rt-pad">
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="social-network-container">
<ul class="social-network social-circle">
<li>
<a href="https://www.facebook.com/makerfaire" class="icoFacebook" title="Facebook" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com/makerfaire" class="icoTwitter" title="Twitter" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/makerfaire/" class="icoInstagram" title="Instagram" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a href="//www.pinterest.com/makemagazine/maker-faire/" class="icoPinterest" title="Pinterest" target="_blank">
<i class="fa fa-pinterest-p"></i>
</a>
</li>
</ul>
</div>
</div>
</div> </div>
</div>
<div class="row padtop">
<div class="col-xs-12">
<p class="copyright-footer text-center"><?php echo mfo_event_name()?> is independently organized and operated under license from Maker Media, Inc.</p>
<?php do_action("mfo_inside_footer"); ?>
</div>
</div>
</div>
</footer>
</div><!--page-content -->
<?php wp_footer(); ?>
<?php do_action("mfo_after_footer"); ?>
</body>
</html>