-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfooter.php
22 lines (22 loc) · 1.07 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
<!-- 底部信息 -->
<div id="footer" class="site-footer">
<div class="inner textcenter">
<div class="copyright">
<!-- 尊重他人的劳动成果,请尽可能避免删除下列版权信息,谢谢! -->
<span>Copyright © <?php $currentYear = intval(date('Y')); echo $currentYear; ?> <?php $this->options->title(); ?>. Powered by
<a href="http://typecho.org/" title="Powered by Typecho)))" target="_blank">Typecho</a>. Theme By
<a href="https://weibo.rowingbohe.com" title="Weibo" target="_blank">Weibo</a>. <?php $this->options->myFooter(); ?>
</span>
</div>
</div>
</div>
<!-- 滚回顶部 -->
<div class="gotop bg show">
<img src="<?php $this->options->themeUrl('images/scroll.png'); ?>" />
</div>
<?php $this->options->optionFooter(); ?>
<?php $this->footer(); ?>
<script type="text/javascript" src="<?php $this->options->themeUrl('js/app.js'); ?>"></script>
<script src="<?php $this->options->themeUrl('js/activate-power-mode.js'); ?>"></script>
</body>
</html>