-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path404.php
executable file
·20 lines (20 loc) · 1008 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<section class="content">
<div class="pad group">
<div class="notebox">
<div class="entry">
<p><?php _e('你想查看的页面已被转移或删除了, 要不要搜索看看: ', 'slanted'); ?></p>
</div>
<div class="search-again">
<form method="post" action="" class="searchform themeform">
<div><input type="text" name="s" class="text" size="32" value="输入搜索词后回车搜索"
onfocus="if(this.value=='输入搜索词后回车搜索')this.value='';"
onblur="if(this.value=='')this.value='输入搜索词后回车搜索';"/></div>
</form>
</div>
</div>
</div>
<!--/.pad-->
</section><!--/.content-->
<?php $this->need('footer.php'); ?>