forked from Facens/wpbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
32 lines (24 loc) · 692 Bytes
/
404.php
File metadata and controls
32 lines (24 loc) · 692 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage wpbootstrap
* @since wpbootstrap 0.1
*/
get_header(); ?>
<section class="row">
<article class="span9 columns">
<h1 class="page-header"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
<?php get_search_form(); ?>
<script type="text/javascript">
// focus on search field after it has loaded
jQuery('#s').focus();
</script>
</article>
<aside class="span3 columns">
<?php get_sidebar(); ?>
</aside>
</section>
<?php get_footer(); ?>