-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
56 lines (53 loc) · 2.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
53
54
55
56
</div><!-- .site-content -->
<footer class="site-footer" role="contentinfo">
<div class="footer-top">
<div class="container-lg">
<div class="row">
<div class="col-12"><div class="border-top"></div></div>
<div class="col-12 col-lg-3 footer-col footer-brand-col"><?php get_template_part('template-parts/partial', 'footer-brand'); ?></div>
<div class="col-12 col-lg-6 footer-col footer-nav-col"><?php get_template_part('template-parts/partial', 'footer-menu'); ?></div>
<div class="col-12 col-lg-3 footer-col footer-some"><?php get_template_part('template-parts/partial', 'footer-some'); ?></div>
<div class="col-12 footer-navigation-wrapper mobile footer-col">
<nav id="footer-navigation" class="footer-navigation" role="navigation" aria-label="<?php esc_attr_e('Apuvalikko', 'ID'); ?>">
<?php
wp_nav_menu(array(
'theme_location' => 'footer-extra',
'menu_class' => 'footer-helper',
));
?>
</nav><!-- .main-navigation -->
<button type="button" class="cookie-settings-toggle"><?php _e('Evästeasetukset', 'ID'); ?></button>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container-lg">
<div class="row">
<div class="col">
<div class="flex mobile-col">
<div class="flex">
<?php get_template_part('template-parts/partial', 'partio-logo'); ?>
<nav id="footer-navigation mobile" class="footer-navigation desktop" role="navigation" aria-label="<?php esc_attr_e('Apuvalikko', 'ID'); ?>">
<?php
wp_nav_menu(array(
'theme_location' => 'footer-extra',
'menu_class' => 'footer-helper',
));
?>
</nav><!-- .main-navigation -->
<button type="button" class="cookie-settings-toggle"><?php _e('Evästeasetukset', 'ID'); ?></button>
</div>
<div class="copyright">© <?php echo date('Y') . ' ' . _x('Suomen Partiolaiset – Finlands Scouter ry', 'copyright', 'ID'); ?></div>
</div>
</div>
</div>
</div>
</div>
</footer><!-- .site-footer -->
</div><!-- .site-inner -->
</div><!-- .site#page -->
<?php //get_template_part('template-parts/block', 'cookie-notification'); ?>
<?php wp_footer(); ?>
</body>
</html>