-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
97 lines (95 loc) · 2.94 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
<!--============================
= Footer =
=============================-->
<footer class="footer section section-sm">
<!-- Container Start -->
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-7 offset-md-1 offset-lg-0">
<!-- About -->
<div class="block about">
<!-- footer logo -->
<img src="logo_image/logo1.png" alt="" height= 43px>
<!-- description -->
<p class="alt-color">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
</div>
<!-- Link list -->
<div class="col-lg-2 offset-lg-1 col-md-3">
<div class="block">
</div>
</div>
<!-- Link list -->
<div class="col-lg-2 col-md-3 offset-md-1 offset-lg-0">
<div class="block">
<h4>Site Pages</h4>
<ul>
<li><a href="home.php">Home</a></li>
<?php
if(isset($_SESSION["user_id"])) {
if ($_SESSION["role"] == 0) {
echo '
<li><a href="product.php">Product</a></li>
<li><a href="compare.php">Compare</a></li>
<li><a href="contact.php">Contact</a></li>
';
}
}
?>
</ul>
</div>
</div>
<!-- Promotion -->
<div class="col-lg-4 col-md-7">
<!-- App promotion -->
<div class="block-2 app-promotion">
<div class="mobile d-flex">
<a href="">
<!-- Icon -->
<img src="images/footer/phone-icon.png" alt="mobile-icon">
</a>
<p>Get the Dealsy Mobile App and Save more</p>
</div>
<div class="download-btn d-flex my-3">
<a href="https://play.google.com/store?hl=en"><img src="images/apps/google-play-store.png" class="img-fluid" alt=""></a>
<a href="https://www.apple.com/ios/app-store/" class=" ml-3"><img src="images/apps/apple-app-store.png" class="img-fluid" alt=""></a>
</div>
</div>
</div>
</div>
</div>
<!-- Container End -->
</footer>
<!-- Footer Bottom -->
<footer class="footer-bottom">
<!-- Container Start -->
<div class="container">
<div class="row">
<div class="col-sm-6 col-12">
<!-- Copyright -->
<div class="copyright">
<p>Copyright © <script>
var CurrentYear = new Date().getFullYear()
document.write(CurrentYear)
</script>. All Rights Reserved, theme by <a class="text-primary" href="https://themefisher.com" target="_blank">themefisher.com</a></p>
</div>
</div>
<div class="col-sm-6 col-12">
<!-- Social Icons -->
<ul class="social-media-icons text-right">
<li><a class="fa fa-facebook" href="https://www.facebook.com" target="_blank"></a></li>
<li><a class="fa fa-twitter" href="https://twitter.com" target="_blank"></a></li>
<li><a class="fa fa-pinterest-p" href="https://www.pinterest.com" target="_blank"></a></li>
<li><a class="fa fa-vimeo" href="https://vimeo.com/"></a></li>
</ul>
</div>
</div>
</div>
<!-- Container End -->
<!-- To Top -->
<div class="top-to">
<a id="top" class="" href="#"><i class="fa fa-angle-up"></i></a>
</div>
</footer>