forked from ZoharWang/typecho-theme-Cactus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
19 lines (18 loc) · 764 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<footer id="footer">
<p class="small">
© Copyright <?php echo date('Y'); ?> <a href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title() ?></a> /
<a href="https://www.iwch.me/archives/668.html">Cactus</a> /
<a href="http://typecho.org">Typecho</a>
<?php if ($this->options->icpNumber) : ?>
/ <a href="http://www.miibeian.gov.cn/" target="_blank" rel="nofollow"><?php $this->options->icpNumber(); ?></a>
<?php endif; ?>
</p>
</footer>
</section>
<script src="<?php $this->options->themeUrl('highlight.js'); ?>"></script>
<script>hljs.initHighlightingOnLoad();</script>
<?php $this->footer(); ?>
<?php $this->options->footer(); ?>
</body>
</html>