-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
109 lines (102 loc) · 4.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!-- Footer Section Start -->
<?php global $redux_demo ?>
<footer>
<!-- Footer Area Start -->
<section class="footer-Content">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<h3><?php echo $redux_demo['about_title']; ?></h3>
<div class="textwidget">
<p><?php echo $redux_demo['about_containt']; ?></p>
</div>
<ul class="footer-social">
<li><a class="facebook" href="<?php echo $redux_demo['facebook']; ?>"><i class="lni-facebook-filled"></i></a></li>
<li><a class="twitter" href="<?php echo $redux_demo['twitter']; ?>"><i class="lni-twitter-filled"></i></a></li>
<li><a class="linkedin" href="<?php echo $redux_demo['linkdin']; ?>"><i class="lni-linkedin-fill"></i></a></li>
<li><a class="google-plus" href="<?php echo $redux_demo['Google+']; ?>"><i class="lni-google-plus"></i></a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Short Link</h3>
<?php
wp_nav_menu(array(
'theme_location' => 'footer-menu',
'menu_class' => 'menu',
'container' => '',
));
?>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Contact Us</h3>
<ul class="contact-footer">
<li>
<strong>Address :</strong> <span><?php echo $redux_demo['address']; ?></span>
</li>
<li>
<strong>Phone :</strong> <span><?php echo $redux_demo['phone']; ?></span>
</li>
<li>
<strong>E-mail :</strong> <span><a href="#"><?php echo $redux_demo['email']; ?></a></span>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 col-xs-6 col-mb-12">
<div class="widget">
<h3 class="block-title">Instagram</h3>
<ul class="instagram-footer">
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta1.jpg" alt=""></a></li>
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta2.jpg" alt=""></a></li>
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta3.jpg" alt=""></a></li>
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta4.jpg" alt=""></a></li>
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta5.jpg" alt=""></a></li>
<li><a href="#"><img src="<?php echo get_template_directory_uri() ?>/img/instagram/insta6.jpg" alt=""></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Footer area End -->
<!-- Copyright Start -->
<div id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="site-info float-left">
<p><?php echo $redux_demo['Copyright']; ?></p>
</div>
<div class="float-right">
<?php
wp_nav_menu(array(
'theme_location' => 'copyright-area-menu',
'menu_class' => 'nav nav-inline',
'container' => '',
'walker' => new essence_Navwalker()
));
?>
</div>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
</footer>
<!-- Footer Section End -->
<!-- Go To Top Link -->
<a href="#" class="back-to-top">
<i class="lni-arrow-up"></i>
</a>
<div id="loader">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>