-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathfooter.php
More file actions
25 lines (25 loc) · 1.21 KB
/
footer.php
File metadata and controls
25 lines (25 loc) · 1.21 KB
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
<div id="sidebar">
<?php $this->need('sidebar.php'); ?>
</div>
<div id="copyr">
<blockquote class="pull-right">
<small>Copyright © <a title="<?php $this->options->title() ?>" href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title() ?></a> / Theme by <a href="https://www.dnshh.com/" target="_blank">Hang</a> & <a href="http://ben-lab.com/" target="_blank">Ben</a> / <a title="自豪地采用Typecho。" href="http://typecho.org" target="_blank">Typecho)))</a> </small>
</blockquote>
</div>
</div>
<?php if ($this->is('post')or$this->is('page')) : ?>
<script src="<?php $this->options->themeUrl(); ?>js/post.js"></script>
<?php else: ?>
<script src="<?php $this->options->themeUrl(); ?>index_ajax_navi.js"></script>
<?php endif ?>
<script src="<?php $this->options->themeUrl(); ?>js/bootstrap.js"></script>
<script src="<?php $this->options->themeUrl(); ?>js/bootstrap-alert.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".post p:has(img)").css("text-indent","0");
});
</script>
<div data-widget="backtop"><script src="<?php $this->options->themeUrl(); ?>js/backtop.js" charset="utf-8"></script></div>
<?php $this->footer(); ?>
</body>
</html>