-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·52 lines (41 loc) · 1.82 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
<!-- footer -->
<footer class="footer" role="contentinfo">
<div class="container">
<div class="row footerWidgets">
<div class="large-4 columns widgetOne">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('footer-widget-1')) ?>
</div>
<div class="large-4 columns widgetTwo">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('footer-widget-2')) ?>
</div>
<div class="large-4 columns widgetThree">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('footer-widget-3')) ?>
</div>
</div>
<!-- copyright -->
<p class="copyright">
© <?php echo date('Y'); ?> Copyright <a href="//.com" title="EncoreCoach"><?php bloginfo('name'); ?></a>.
</p>
<!-- /copyright -->
</div>
</footer>
<!-- /footer -->
<?php wp_footer(); ?>
<!-- analytics -->
<script>
(function($) {
$( document ).ready(function() {
$('.mobileMenuButton').on('click', function(e) {
$('nav').toggleClass("mobileOn");
$('header').toggleClass("mobileOn");
e.preventDefault();
});
$('.search label').on('click', function(e) {
$('header .search').toggleClass("openInput");
e.preventDefault();
});
});
})(jQuery);
</script>
</body>
</html>