forked from ShawnZeng1996/Memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·36 lines (35 loc) · 1.25 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
35
36
<?php
/**
* ┌─┐┬ ┬┌─┐┬ ┬┌┐┌┌─┐┌─┐┌┐┌┌─┐ ┌─┐┌─┐┌┬┐
* └─┐├─┤├─┤││││││┌─┘├┤ ││││ ┬ │ │ ││││
* └─┘┴ ┴┴ ┴└┴┘┘└┘└─┘└─┘┘└┘└─┘o└─┘└─┘┴ ┴
*
* @package WordPress
* @Theme Memory
*
* @author admin@shawnzeng.com
* @link https://shawnzeng.com
* Template Name: 404
* Template Post Type: page
*/
get_header(); ?>
<div id="main">
<div id="main-part">
<ul class="posts-list">
<li>
<article class="art">
<div class="art-main">
<div class="art-content">
<h3 class="art-title">
<i class="fa fa-times"></i> 404 Not Found
</h3>
<p>您似乎输入了错误的地址,所访问的页面不存在~要不去其他页面看看?</p>
</div>
</div>
</article>
</li>
</ul>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>