-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
33 lines (26 loc) · 959 Bytes
/
404.php
File metadata and controls
33 lines (26 loc) · 959 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
29
30
31
32
33
<?php
/**
* The template for displaying 404 error pages.
*
* @package WordPress
* @subpackage Pohutukawa
* @since Pohutukawa 1.0
*/
get_header(); ?>
<div id="content" class="entry-content">
<article id="post-0" class="page error404 not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Not Found', 'pohutukawa' ); ?></h1>
</header><!--end .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'pohutukawa' ); ?></p>
<?php get_search_form(); ?>
</div><!-- end .entry-content -->
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
</article><!-- end #post-0 -->
</div><!--end #content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>