forked from Facens/wpbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
33 lines (26 loc) · 761 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
31
32
33
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage wpbootstrap
* @since wpbootstrap 0.1
*/
get_header(); ?>
<div class="row">
<div class="span11 columns">
<div class="page-header">
<h1><?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(); ?>
</div> <!-- /page-header -->
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
</div>
<div class="span5 columns">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>