-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathfooter.php
More file actions
40 lines (36 loc) · 1.47 KB
/
Copy pathfooter.php
File metadata and controls
40 lines (36 loc) · 1.47 KB
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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
</div>
</div>
<footer>
<div class="footer-bottom">
<div class="container">
<div class="pull-left copyright">Copyright © <?php _e(date('Y'));?> <?php $this->options->title(); ?></div>
<ul class="footer-nav pull-right">
<li>Powered by <a href="http://typecho.org/" rel="nofollow">Typecho)))</a></li>
<li>Optimized by <a href="http://hanc.cc">HanSon</a></li>
<?php if($this->options->miibeian) : ?>
<li><a href="http://www.miibeian.gov.cn" rel="nofollow"><?php echo $this->options->miibeian; ?></a></li>
<?php endif; ?>
<?php if ( !empty($this->options->misc) && in_array('ShowLoadTime', $this->options->misc) ) : ?>
<li>加载耗时:<?php echo timer_stop(); ?></li>
<?php endif; ?>
</ul>
</div>
</div>
</footer>
<?php $this->footer(); ?>
<script src="<?php $this->options->themeUrl('js/jquery-2.1.4.min.js'); ?>"></script>
<script src="<?php $this->options->themeUrl('js/bootstrap.min.js'); ?>"></script>
<script src="<?php $this->options->themeUrl('js/material.min.js'); ?>"></script>
<script src="<?php $this->options->themeUrl('js/ripples.min.js'); ?>"></script>
<script src="<?php $this->options->themeUrl('js/jquery.scrollUp.min.js'); ?>"></script>
<script>
$.material.init();
$.scrollUp({
scrollImg: true,
scrollText: "回顶部"
});
$('#scrollUp').addClass('btn btn-info btn-fab btn-raised mdi-navigation-expand-less');
</script>
</body>
</html>