-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path404.php
37 lines (30 loc) · 1.08 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
// index.php
get_header();
?>
<div id="warpper">
<section id="content">
<div id="primary" role="main">
<div itemscope="" itemtype="http://schema.org/WebPage" id="breadcrumb" class="breadcrumb">
<a itemprop="breadcrumb" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="返回首页" rel="home"><?php bloginfo( 'name' ); ?></a><span class="chevron"> › </span>
404 Error
</div>
<article id="post-0" class="article-single" >
<div class="article-single-box">
<header class="entry-header">
<h1 class="entry-title" itemprop="name headline">Ouch! 404 error</h1>
</header>
<div class="post-entry post-content">
<p> It seems the page you are looking for is not here anymore. The page might have moved to another address or just removed by our staff.</p>
<?php get_search_form(); ?>
</div>
</div>
</article>
</div>
</section><!-- end content-->
<section id="sidebar">
<?php get_sidebar();?>
</section><!-- end sidebar -->
<div class="clearfix"></div>
</div><!-- end wrapper -->
<?php get_footer(); ?>