-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·35 lines (31 loc) · 955 Bytes
/
footer.php
File metadata and controls
executable file
·35 lines (31 loc) · 955 Bytes
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
<?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'); ?> luckyscript | powered by <a >typecho</a> </p>
<p>themed by <a>luckyscript</a> ♥ with all my love</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>