-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
executable file
·28 lines (15 loc) · 860 Bytes
/
Copy path404.php
File metadata and controls
executable file
·28 lines (15 loc) · 860 Bytes
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
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap clearfix">
<div id="main" class=" clearfix" role="main">
<article id="post-not-found" class="hentry clearfix" >
<section class="eightcol gutter-top marginauto entry-content">
<h1><?php _e( 'Sorry, Article Not Found', 'bonestheme' ); ?></h1>
<p><?php _e( 'The article or page you were looking for was not found. If you\'re looking for something in particular, you can use the search form here. Alternatively, you can use the navigation above.', 'bonestheme' ); ?></p>
<p><?php get_search_form(); ?></p>
</section> <!-- end article section -->
</article> <!-- end article -->
</div> <!-- end #main -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>