-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
21 lines (19 loc) · 948 Bytes
/
footer.php
File metadata and controls
21 lines (19 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
</div><!-- end .row -->
</div>
</div><!-- end #body -->
<footer id="footer" role="contentinfo">
© <?php echo date('Y'); ?> <a href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title(); ?></a>.
<?php _e('由 <a href="http://www.typecho.org">Typecho</a> 强力驱动'); ?>.
<?php if($this->user->hasLogin()): ?>
<a href="<?php $this->options->adminUrl(); ?>"><?php _e('进入后台'); ?> (<?php $this->user->screenName(); ?>)</a>
<a href="<?php $this->options->logoutUrl(); ?>"><?php _e('退出'); ?></a>
<?php else: ?>
<a href="<?php $this->options->adminUrl('login.php'); ?>"><?php _e('登录'); ?></a>
<?php endif; ?>
</footer><!-- end #footer -->
<?php $this->footer(); ?>
<script src="//cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad()</script>
</body>
</html>