-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path404.php
29 lines (24 loc) · 784 Bytes
/
404.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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
Icarus_Aside::$asideLeft->clear();
Icarus_Aside::$asideRight->clear();
$this->need('component/header.php');
?>
<div class="card">
<div class="card-content">
<p class="title has-text-weight-normal"><?php _IcTp('404.title'); ?></p>
<p class="subtitle"><?php _IcTp('404.desc'); ?></p>
</div>
<div class="card-footer">
<?php if (!empty($jump)): ?>
<p class="card-footer-item">
<span><a href="<?php echo $jumpTarget; ?>" id="icarus-jump-guide"><?php echo $jump; ?></a></span>
</p>
<?php endif; ?>
<p class="card-footer-item">
<span><a href="/">回到首页</a></span>
</p>
</div>
</div>
<?php
$this->need('component/footer.php');