-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
44 lines (22 loc) · 801 Bytes
/
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
37
38
39
40
41
42
43
44
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap cf">
<div id="main" class="main-content cf" role="main">
<article id="post-not-found" class="hentry cf">
<header class="article-header">
<h1><?php _e( 'Oh No!', 'bonestheme' ); ?></h1>
</header>
<section class="entry-content">
<p><?php _e( 'The content you were looking for was not found. Maybe try looking again:', 'bonestheme' ); ?></p>
</section>
<section class="search">
<p><?php get_search_form(); ?></p>
<h1>Site Map</h1>
<?php get_template_part('content','sitemap'); ?>
</section>
</article>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>