-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
78 lines (63 loc) · 2.72 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
<footer class="ftco-footer ftco-bg-dark ftco-section">
<div class="container">
<div class="row mb-5 jurist-newsletter">
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<?php
if ( is_active_sidebar( "footer-sidebar-1" ) ) {
dynamic_sidebar( "footer-sidebar-1" );
}
?>
<?php get_template_part("/page-templates/common/social-icon");?>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4 ml-md-5">
<?php
if ( is_active_sidebar( "footer-sidebar-2" ) ) {
dynamic_sidebar( "footer-sidebar-2" );
}
?>
</div>
</div>
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<div class="opening-hours">
<?php
if ( is_active_sidebar( "footer-sidebar-3" ) ) {
dynamic_sidebar( "footer-sidebar-3" );
}
?>
</div>
</div>
</div>
<div class="col-md text-light ">
<div class="ftco-footer-widget mb-4 text-light">
<div class="block-23 mb-3 text-light">
<?php
if ( is_active_sidebar( "footer-sidebar-4" ) ) {
dynamic_sidebar( "footer-sidebar-4" );
}
?>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 row text-center">
<div class="col-md-8">
<?php echo _e('Copyright ©2020 All rights reserved | This template is made with by ', 'jurist') ?><a href="http://www.rainyforest.xyz"><?php _e('Anis Arronno','jurist'); ?></a>
</div>
<div class="col-md-4">
<?php _e('Powered by','jurist');?> <a href="http://www.rainyforest.xyz"><?php _e('Rainy Forest','jurist') ;?></a>
</div>
</div>
</div>
</div>
</footer>
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00" /></svg></div>
<?php wp_footer();?>
</body>
</html>