forked from ilaoniu/pluto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
34 lines (31 loc) · 1.23 KB
/
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
30
31
32
33
34
<?php
error_reporting(0);
?>
<?php get_header(); ?>
<!-- 作品详情 -->
<div class="posts clearfix">
<article <?php post_class('post-404'); ?>>
<div class="post-wrap">
<header class="post-title wb">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
404
</a>
</header>
<div class="post-inner">
<div class="post-right">
<div class="post-content wb clearfix text-c">
<h1 style="font-size:100px">404</h1>
<p>对不起,你要查看的页面已经不存在,请返回!</p>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
<!-- content-inner 结束-->
</div>
<!-- container 结束-->
</section>
<!-- content 结束-->
<?php get_footer(); ?>