-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
113 lines (81 loc) · 3.96 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package understrap
*/
$the_theme = wp_get_theme();
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php get_sidebar( 'footerfull' ); ?>
<div id="preFooter">
<div class = "container">
<div class = "row">
<div id = "socialIcons" class = "col-sm-12 col-md-6">
<h3>Let's Socialize!</h3>
<a href = "https://www.instagram.com/mizzicosmetics/" target = "_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href = "https://twitter.com/lipluxect" target = "_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href = "https://www.facebook.com/MIZZICOSMETICS/" target = "_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</div>
<div id = "footerSignup" class = "col-sm-12 col-md-6">
<h3>Join the Club</h3>
<div id="mc_embed_signup"><!-- Begin MailChimp Signup Form -->
<form action="//mizzicosmetics.us13.list-manage.com/subscribe/post?u=c8578af665b301edf76be65e9&id=60287b84bb" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder = "E-Mail Address">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_c8578af665b301edf76be65e9_60287b84bb" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-outline-primary btn-block"></div>
</div>
</form>
</div><!--End mc_embed_signup-->
</div>
</div>
</div>
</div>
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_html( $container ); ?>">
<div id = "footerWidgets" class = "row pb">
<div class = "col-lg-3 col-sm-12">
<?php dynamic_sidebar('footer_1'); ?>
</div>
<div class = "col-lg-3 col-sm-12">
<?php dynamic_sidebar('footer_2'); ?>
</div>
<div class = "col-lg-3 col-sm-12">
<?php dynamic_sidebar('footer_3'); ?>
</div>
<div class = "col-lg-3 col-sm-12">
<?php dynamic_sidebar('footer_4'); ?>
</div>
</div><!-- #footerWidgets -->
</div><!-- .container -->
</div><!-- wrapper end -->
<div class = "container-fluid">
<div id = "bottomFooter" class="row">
<div class="col-md-12">
<footer class="site-footer text-center" id="colophon">
<div class="site-info">
<span>© <?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?></span><br />
<span>Website by <a href = "http://www.designs4theweb.com" target = "_blank">Designs 4 The Web</a></span><br />
<span>Photos by <a href = "https://www.mphanson.com/" target = "_blank" style = "margin-left: 5px;"><img src = "http://www.mizzicosmetics.com/wp-content/themes/understrap-child-master/img/mphstudio.png"></a></span>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- .container-fluid -->
<?php wp_footer(); ?>
<script>
jQuery('button').on('click', function(){
jQuery('body').toggleClass('open');
});
</script>
</body>
</html>