-
Notifications
You must be signed in to change notification settings - Fork 8
/
footer.php
26 lines (25 loc) · 1.12 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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<a class="to-top" style="z-index: 1200;">
<img src="<?php $this->options->themeUrl('img/top.svg')?>" alt="返回顶部" title="返回顶部">
</a>
<div class="container">
<div class="row">
<div class="col-md-12">
<footer id="footer" role="contentinfo">
© <?php echo date('Y'); ?> <a href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title(); ?></a>.
<?php if($this->options->postbirdIcp){ ?>
<a target="_blank" href="//www.miitbeian.gov.cn"><?php $this->options->postbirdIcp(); ?></a> .
<?php } ?>
<?php _e('由 <a href="http://www.typecho.org" target="_blank">Typecho</a> 强力驱动'); ?>.
<?php _e('Theme by <a href="http://www.ptbird.cn" target="_blank">Postbird</a>'); ?>.
</footer><!-- end #footer -->
</div>
</div>
</div>
<?php $this->footer(); ?>
</body>
<!-- 用户自定义脚本内容 -->
<?php if($this->options->postbirdScript) { ?>
<?php $this->options->postbirdScript() ?>
<?php } ?>
</html>