-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
51 lines (47 loc) · 2 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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
?>
<!--footer-->
<footer>
<div id="footer">
<div class="cd-tool visible-lg text-center">
<a class="cd-top cd-is-visible cd-fade-out"><span class="fa fa-chevron-up"></span></a>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 footer-list text-center">
<p><a href="<?php $this->options ->siteUrl(); ?>"><?php $this->options->title();?></a>
<br>备案号:<a href="http://js.beian.miit.gov.cn">苏ICP备18063590号-1</a></p>
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type='text/javascript' src='<?php $this->options->themeUrl('js/jquery.waypoints.min.js'); ?>'></script>
<script type='text/javascript' src='<?php $this->options->themeUrl('js/jquery.stellar.min.js'); ?>'></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery.hoverintent/1.8.1/jquery.hoverIntent.min.js"></script>
<script type='text/javascript' src='<?php $this->options->themeUrl('js/superfish.min.js'); ?>'></script>
<script type='text/javascript' src='<?php $this->options->themeUrl('js/kratos.js?ver=2.5.2'); ?>'></script>
<?php if (!$this->options->sidebarlr == 'single'): ?><script type="text/javascript">
if ($("#main").height() > $("#sidebar").height()) {
var footerHeight = 0;
if ($('#page-footer').length > 0) {
footerHeight = $('#page-footer').outerHeight(true);
}
$('#sidebar').affix({
offset: {
top: $('#sidebar').offset().top - 30,
bottom: $('#footer').outerHeight(true) + footerHeight + 6
}
});
}
</script>
<?php endif; ?>
</body>
</html>