forked from touchitvoid/illi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
29 lines (28 loc) · 1.03 KB
/
404.php
File metadata and controls
29 lines (28 loc) · 1.03 KB
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; ?>
<?php $this->need('header.php'); ?>
<style>
.an h2 {
font-size: 0;
}
.an h2:after {
content: '看样子进入了一个404页面';
font-size: 34px;
letter-spacing: 6px;
}
.errBody {color:rgba(0,0,0,.65)}
.errBody h1 {margin : 0 0 16px 0;font-size:28px}
</style>
<div class="mdui-container">
<div class="mdui-row">
<div class="mdui-col-md-10 mdui-col-offset-md-1 errBody">
<h1 class=""><?php _e('页面没找到'); ?></h1>
<p><?php _e('你想查看的页面已被转移或删除了, 要不要搜索看看: '); ?></p>
<form action="" method="post" class="search">
<i class="fa fa-search"></i>
<input type="text" name="s" placeholder="搜索内容" autocomplete="off" class="search-input">
</form>
</div>
</div>
</div>
<?php $this->need('footer.php'); ?>
<?php $this->need('sidebar.php'); ?>