-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
88 lines (67 loc) · 2.88 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
<div class="container-fluid darkGrey"><!-- Footer section-->
<div class="container">
<footer>
<div class="row">
<div class="col-sm-6 col-xs-12">
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="business.php">Entreprises</a></li>
<li><a href="team.php">Doge Team</a></li>
<li><a href="news.php">Actualités</a></li>
<li><a href="legalMentions.php">Mentions légales</a></li>
<li><a href="/admin/login.php">Private acess</a></li>
</ul>
</div>
<div class="col-sm-6 col-xs-12 text-right visible-lg visible-md visible-sm hidden-xs">
<img class="logoImg" src="img/logo_white.png" alt="logo Doge" title="logo Doge">
</div>
<p>Copyright (c) Doge CLub</p>
<div id="socialNetworks">
<ul>
<li><a href="#"><img class="img-responsive" src="img/fb_icon.png" alt="Facebook"></a></li>
<li><a href="#"><img class="img-responsive" src="img/twitter_icon.png" alt="Twitter"></a></li>
<li><a href="#"><img class="img-responsive" src="img/ytube_icon.png" alt="Twitter"></a></li>
</ul>
</div>
</div>
</footer>
</div>
</div>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="js/jquery.mb.YTPlayer.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scrollreveal.min.js"></script>
<script src="js/navbar.js"></script>
<script type="text/javascript">
jQuery(function () {
jQuery("#videoPlayer").YTPlayer();
var filters = {
grayscale: 100,
brightness: 50
};
jQuery('#videoPlayer').YTPApplyFilters(filters)
//Condition for change of navbar
var php_page = "<?php echo $currentPage; ?>";
if (php_page == "home") {
$('header').css('margin-bottom', '0');
window.sr = ScrollReveal();
sr.reveal('#introduction', {duration: 600},);
sr.reveal('#activities', {duration: 600},);
sr.reveal('#euratechnologie', {duration: 600},);
sr.reveal('#news', {duration: 600},);
sr.reveal('#contact', {duration: 600},);
checkScroll();
if ($('.navbar').length > 0) {
$(window).on("scroll load resize", function () {
checkScroll();
});
}
}
else {
$('.navbar ').css({"background-color": "#ddd", "color": "#333"});
}
});
</script>
</body>
</html>