-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy path404.php
More file actions
16 lines (16 loc) · 588 Bytes
/
404.php
File metadata and controls
16 lines (16 loc) · 588 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/head.php');
$this->need('includes/header.php');
?>
<main class="main-container container" role="main">
<div class="post-body">
<div class="post-content">
<h1 class="error-title">404</h1>
<p style="text-align:center" role="alert">
<span>肥肠抱歉,你访问的页面被猫吃掉了</span><br /><br />
<a href="<?php $this->options->SiteUrl(); ?>" class="button error-button no-line">返回首页</a>
</p>
</div>
</div>
</main>
<?php $this->need('includes/footer.php'); ?>