forked from zoerooney/Emi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
27 lines (20 loc) · 662 Bytes
/
404.php
File metadata and controls
27 lines (20 loc) · 662 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package themeHandle
*/
get_header(); ?>
<section id="primary" role="main">
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Uh oh!', 'themeTextDomain' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps a search would help?', 'themeTextDomain' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>?>