-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfooter.php
38 lines (37 loc) · 1.43 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
27
28
29
30
31
32
33
34
35
36
37
38
<footer id="footer">
<div class="outer">
<div id="footer-info">
<div class="footer-left">
© <?php echo date('Y');?> <a href="<?php $this->options->siteurl(); ?>"><?php $this->options->title(); ?></a><?php
if(!empty($this->options->icp)): ?>
|<a href="http://www.miitbeian.gov.cn/" rel="nofollow" target="_blank"><?php echo $this->options->icp; ?></a>
<?php endif; ?>
</div>
<div class="footer-right">
<a href="http://typecho.org/" target="_blank">Typecho</a> Theme <a href="https://github.com/lingmm/yilia-theme-port-to-typecho" target="_blank">Yilia</a> by Litten
</div>
</div>
</div>
</footer>
</div>
<script>
var yiliaConfig = {
fancybox: true,
mathjax: undefined,
animate: true,
isHome: <?php echo $this->is('index')?'true':'false'; ?>,
isPost: <?php echo $this->is('post')?'true':'false'; ?>,
isArchive: <?php echo $this->is('archive')?'true':'false'; ?>,
isTag: false,
isCategory: false,
open_in_new: false,
prettify: true,
base_url: "<?php $this->options->themeUrl();?>"
}</script>
<script src="//cdn.bootcss.com/require.js/2.1.20/require.min.js" type="text/javascript"></script>
<script src="//cdn.bootcss.com/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
<script src="<?php $this->options->themeUrl(); ?>js/main.js" type="text/javascript" ></script>
<?php $this->footer(); ?>
</div>
</body>
</html>