-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
62 lines (55 loc) · 2.74 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
<?php
/*
* =====================================================
*
* footer.php
*
* The Theme footer file
*
* =====================================================
*/
?>
<footer class="mdl-mega-footer">
<div class="mdl-mega-footer__middle-section">
<div class="mdl-mega-footer__drop-down-section">
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
<?php dynamic_sidebar('sidebar-2'); ?>
</div>
<div class="mdl-mega-footer__drop-down-section">
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
<?php dynamic_sidebar('sidebar-3'); ?>
</div>
<div class="mdl-mega-footer__drop-down-section">
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
<?php dynamic_sidebar('sidebar-4'); ?>
</div>
<div class="mdl-mega-footer__drop-down-section">
<input class="mdl-mega-footer__heading-checkbox" type="checkbox" checked>
<?php dynamic_sidebar('sidebar-5'); ?>
</div>
</div>
<div class="mdl-mega-footer__bottom-section">
<div class="mdl-logo"><?php echo '©'.get_bloginfo('name'); ?></div>
<?php
$contact_menu_args = array(
'theme_location' => 'aftv-legacy-menu',
'container' => FALSE,
'menu_class' => 'mdl-mega-footer__link-list aftv-legacy__link-menu',
'item_spacing' => 'preserve',
'walker' => new AFTV_walker()
);
if (has_nav_menu('aftv-legacy-menu')) {
wp_nav_menu($contact_menu_args);
}
?>
</div>
</footer>
<button onclick="toggle_player()" class="aftv-mobile_tv mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--primary mdl-button--raised">
<i class="material-icons">live_tv</i>
</button>
</div>
</main>
</div>
<?php wp_footer(); ?>
</body>
</html>