-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
112 lines (108 loc) · 3.6 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
110
111
112
<!-- footer-starts -->
<footer class="footer-wrap">
<div class="container">
<div class="content">
<div class="left">
<div class="title-group">
<div class="icon">
<img
src="<?php echo get_template_directory_uri() ?>/assets/images/mail-icon.svg"
alt="mail-icon"
class="svg"
/>
</div>
<h6 class="footer-title-link">Subscribe to our newsletter</h6>
</div>
<div class="subscribe-newsletter">
<div class="form-group form-style-alt">
<input
type="email"
class="form-control"
placeholder="Enter Your Email Address"
/>
<div class="btn-wrap">
<a href="#" class="btn btn-primary">Subscribe</a>
</div>
</div>
</div>
<div class="social-links">
<ul>
<li>
<a href="#">
<img
src="<?php echo get_template_directory_uri() ?>/assets/images/fb-icon.svg"
alt="icon"
class="svg"
/>
</a>
</li>
<li>
<a href="#">
<img
src="<?php echo get_template_directory_uri() ?>/assets/images/twitter-icon.svg"
alt="icon"
class="svg"
/>
</a>
</li>
<li>
<a href="#">
<img
src="<?php echo get_template_directory_uri() ?>/assets/images/linkedin-icon.svg"
alt="icon"
class="svg"
/>
</a>
</li>
</ul>
</div>
<div class="copright-text">
© 2023 Consule Solutions All rights reserved.
<span
><a href="#" class="highlighted-link">Privacy Policy</a></span
>
</div>
</div>
<div class="right">
<h6 class="footer-title-link">Quick Links</h6>
<ul class="list">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">Projects</a>
</li>
<li>
<a href="#">Industries</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- footer-ends -->
<!-- CSS File -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="stylesheet" type="text/css" href="assets/css/media.css" />
<!-- JS File -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/swiper-bundle.min.js"></script>
<!-- Custom JS File -->
<script src="assets/js/fileupload.js"></script>
<script src="assets/js/setting.js"></script>
<?php wp_footer(); ?>
</body>
</html>