-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
102 lines (50 loc) · 1.7 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
</div> <!-- End Container -->
<!-- /.container -->
<footer>
<div class="container">
<ul class="list-inline">
<li>
<h6>© 2017 Fashioncents. All Rights Reserved.</h6>
</li>
<li>
<a href="privacy.php">Privacy</a>
</li>
<li>
<a href="terms.php">Terms</a>
</li>
<!-- <li>
<a href="reporterror.php">Report Error</a>
</li> -->
</ul>
</div>
</footer>
<?php include 'deletemodal.php'; ?>
<?php include("analyticstracking.php"); ?>
<!-- jQuery
<script src="js/jquery-3.1.1.js"></script>
Bootstrap Core JavaScript -->
<!-- <script src="vendor/bootstrap/js/bootstrap.min.js"></script> -->
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/new-age.min.js"></script>
<script src="js/navbar.js"></script>
<script src="js/postuploadpreview.js"></script>
<!-- Fading in feature to see who liked the post -->
<script type="text/javascript">
$(function(){
$(".dropdown").hover(
function() {
$('.dropdown-menu', this).stop( true, true ).fadeIn("fast");
$(this).toggleClass('open');
$('b', this).toggleClass("caret caret-up");
},
function() {
$('.dropdown-menu', this).stop( true, true ).fadeOut("fast");
$(this).toggleClass('open');
$('b', this).toggleClass("caret caret-up");
});
});
</script>
</body>
</html>