-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
67 lines (58 loc) · 2.41 KB
/
Copy pathfooter.php
File metadata and controls
67 lines (58 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
<footer id="footer" class="footer dark-background">
<div class="container">
<div class="row gy-3">
<div class="col-lg-3 col-md-6 d-flex">
<i class="bi bi-geo-alt icon"></i>
<div class="address">
<h4><?php echo esc_html__('Address');?></h4>
<?php echo get_theme_mod('address');?>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex">
<i class="bi bi-telephone icon"></i>
<div>
<h4><?php echo esc_html__('Contact');?></h4>
<p>
<strong>Phone:</strong> <span><?php echo get_theme_mod('call-us')?></span><br>
<strong>Email:</strong> <span><?php echo get_theme_mod('email');?></span><br>
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex">
<i class="bi bi-clock icon"></i>
<div>
<h4><?php echo esc_html__('Opening Hours');?></h4>
<p>
<?php echo get_theme_mod('opening-hours');?>
</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<h4><?php echo esc_html__('Follow Us')?></h4>
<div class="social-links d-flex">
<?php if(get_theme_mod('twitter-x')):?>
<a href="<?php echo esc_url(get_theme_mod('twitter-x'));?>" class="twitter"><i class="bi bi-twitter-x"></i></a>
<?php endif; if(get_theme_mod('facebook')):?>
<a href="<?php echo esc_url( get_theme_mod('facebook'));?>" class="facebook"><i class="bi bi-facebook"></i></a>
<?php endif; if(get_theme_mod('instagram')):?>
<a href="<?php echo esc_url(get_theme_mod('instagram'));?>" class="instagram"><i class="bi bi-instagram"></i></a>
<?php endif; if(get_theme_mod('linkedin')):?>
<a href="<?php echo esc_url(get_theme_mod('linkedin'));?>" class="linkedin"><i class="bi bi-linkedin"></i></a>
<?php endif;?>
</div>
</div>
</div>
</div>
<?php if(get_theme_mod('copy-right')):?>
<div class="container copyright text-center mt-4">
<?php echo get_theme_mod('copy-right');?>
</div>
<?php endif;?>
</footer>
<!-- Scroll Top -->
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Preloader -->
<div id="preloader"></div>
<?php wp_footer();?>
</body>
</html>