forked from ZoharWang/typecho-theme-Cactus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
22 lines (21 loc) · 1.02 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
<?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>
<?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>
<?php if (!empty($this->options->optimizeOptions) && in_array('EnableCdn', $this->options->optimizeOptions)) : ?>
<script src="https://cdn.jsdelivr.net/gh/ZoharWang/typecho-theme-Cactus@<?php echo CACTUS_VERSION; ?>/highlight.min.js"></script>
<?php else : ?>
<script src="<?php $this->options->themeUrl('highlight.js'); ?>?v=<?php echo CACTUS_VERSION; ?>"></script>
<?php endif; ?>
<script>hljs.initHighlightingOnLoad();</script>
<?php $this->footer(); ?>
<?php $this->options->footer(); ?>
</body>
</html>