-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
51 lines (31 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* 404 Template
*
* The 404 template is used when a reader visits an invalid URL on your site. By default, the template will
* display a generic message.
*
* @package Shell
* @subpackage Template
* @link http://codex.wordpress.org/Creating_an_Error_404_Page
*/
@header( 'HTTP/1.1 404 Not found', true, 404 );
get_header(); // Loads the header.php template. ?>
<?php do_atomic( 'before_content' ); // shell_before_content ?>
<div id="content">
<?php do_atomic( 'open_content' ); // shell_open_content ?>
<div class="hfeed">
<article <?php shell_post_attributes(); ?>>
<div class="entry-wrap">
<h1 class="error-404-title entry-title"><?php _e( 'Not Found', 'shell' ); ?></h1>
<div class="entry-content">
<p><?php printf( __( 'You tried going to %1$s, and it doesn\'t exist. All is not lost! You can search for what you\'re looking for.', 'shell' ), '<code>' . home_url( esc_url( $_SERVER['REQUEST_URI'] ) ) . '</code>' ); ?></p>
<?php get_search_form(); // Loads the searchform.php template. ?>
</div><!-- .entry-content -->
</div><!-- .entry-wrap -->
</article><!-- .hentry -->
</div><!-- .hfeed -->
<?php do_atomic( 'close_content' ); // shell_close_content ?>
</div><!-- #content -->
<?php do_atomic( 'after_content' ); // shell_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>