-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path404.php
More file actions
31 lines (25 loc) · 799 Bytes
/
404.php
File metadata and controls
31 lines (25 loc) · 799 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
<?php
/**
* @package WordPress
* @subpackage Yoko
*/
get_header(); ?>
<div id="wrap">
<div id="main">
<div id="content">
<article id="page">
<header class="page-entry-header">
<h1 class="entry-title"><?php _e( 'Not Found', 'yoko' ); ?></h1>
</header><!-- end page-entry-header -->
<div class="single-entry-content">
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'yoko' ); ?></p>
<?php get_search_form(); ?>
</div>
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
</article>
</div><!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>