-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
51 lines (44 loc) · 1.71 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
<br /><br /><div id="sponsors">
<div id="sponsorsinner">
<a href="https://www.bktemplates.cc.nf" target="_blank"><img src="https://www.bktemplates.cc.nf/images/bkt_mini.png" alt="BK-Templates - Free Web Site Templates and Images" title="BK-Templates - Free Web Site Templates and Images" border="0" width="88" height="31" /></a>
</div>
</div>
<div id="footer">
<div id="footerinner">
<p>© 2007 - <?php echo date("Y");?> - BK-Templates<br />
BK-Gamer Template by <a href="https://www.bktemplates.cc.nf/" target="_blank">BK-Templates</a></p>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script>
// Closes the sidebar menu
$("#menu-close").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
// Opens the sidebar menu
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
// Scrolls to the selected menu item on the page
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>