-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
57 lines (48 loc) · 1.24 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
<div class="row">
<div class="col-md-12">
<p></p>
<p>© <?php echo $bds_site_name;?> | All Rights Reseverd </p>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Stellar -->
<script src="js/jquery.stellar.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Counters -->
<script src="js/jquery.countTo.js"></script>
<script src="js/grid.js"></script>
<script>
$(function() {
Grid.init();
});
</script>
<!-- MAIN JS -->
<script src="js/main.js"></script>
<script src="jquery_lazyload-master/jquery.lazyload.js?v=1.9.7"></script>
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script type="text/javascript">
$(function() {
$("img.lazy").lazyload({
effect : "fadeIn",
placeholder: "loader.svg",
});
});
$('.masonry-grid').masonry({
// options
itemSelector: '.work-item',
columnWidth: 100
});
</script>
</body>
</html>