forked from lacymorrow/casper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (24 loc) · 937 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Casper
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<section class="error-404 not-found hentry">
<header class="page-header">
<h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'casper' ); ?></h1>
</header><!-- .page-header -->
<div class="page-content">
<img class="alignright" src="<?php echo get_template_directory_uri(); ?>/img/[email protected]" width="96" height="150">
<p><?php _e( 'We tried searching for what you were looking for, but didn't find anything. Please use the search form below.', 'casper'); ?></p>
<p><?php get_search_form(); ?></p>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>