-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·34 lines (30 loc) · 1022 Bytes
/
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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<section class="section">
<div class="container">
<nav class="level is-mobile">
<div class="level-left">
<div class="level-item">
</div>
</div>
<div class="level-right is-marginless">
<div class="level-item">
</div>
</div>
</nav>
</div>
</section>
<section class="section">
<div class="container has-text-centered">
<p>© <?php echo date('Y'); ?> | 由 <a href="http://typecho.org" target="_blank">Typecho</a> 强力驱动 | <a href="https://blog.com.cm/typecho-hucore-theme.html" target="_blank">Hucore theme</a> ♥</p>
</div>
</section>
<script type="text/javascript" src="<?php $this->options->themeUrl(); ?>js/jquery.min.js"></script>
<script type="text/javascript" src="<?php $this->options->themeUrl(); ?>js/top.js"></script>
<script>
$(function () {
$.scrollUp();
});
</script>
<?php $this->footer(); ?>
</body>
</html>