-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·55 lines (47 loc) · 2.12 KB
/
footer.php
File metadata and controls
executable file
·55 lines (47 loc) · 2.12 KB
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
<footer class="footer" role="contentinfo">
<?php if ( is_active_sidebar( 'sidebar-footer-red' ) ) : ?>
<div class="footer-red has-red-background-color has-white-color">
<div class="container">
<?php dynamic_sidebar('sidebar-footer-red'); ?>
</div>
</div>
<?php endif; ?>
<div class="container">
<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
<div class="wp-block-columns widgets footer-1">
<?php dynamic_sidebar('sidebar-footer'); ?>
</div>
<?php endif; ?>
<?php if (has_nav_menu('footer-menu')) : ?>
<div class="wp-block-menu footer-menu">
<?php
wp_nav_menu([
'theme_location' => 'footer-menu',
//'container' => false,
'menu_class' => 'navbar-nav'
]);
?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-footer-2' ) ) : ?>
<div class="wp-block-columns widgets footer-2">
<?php dynamic_sidebar('sidebar-footer-2'); ?>
</div>
<?php endif; ?>
<div class="copytext-wrapper">
<small class="copytext">
Copyright © <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>. All rights reserved. Site by <a href="https://keskio.com/">Keskiö Design</a>.
<?php echo get_the_privacy_policy_link( $before = ' <span class="separator">|</span> ' ); ?>
</small>
</div>
</div>
</footer>
</div> <?php // end wrapper ?>
<div class="bottom-menu">
<a href="https://api.whatsapp.com/send?phone=+358406306996" class="bottom-menu__whatsapp"><i class="icon fab fa-whatsapp"></i></a>
<a href="tel:+358405060386" class="bottom-menu__number"><i class="icon fa fa-phone"></i></a>
<a href="mailto:info@helaxe.com" class="bottom-menu__mail has-red-background-color"><i class="icon far fa-envelope"></i></a>
</div>
<?php wp_footer(); ?>
</body>
</html>