2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Template for displaying 404 pages (Not Found)
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 19:10:21 +02:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 08:36:11 +02:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-30 00:03:15 +02:00
|
|
|
*/
|
|
|
|
|
2010-06-11 18:55:41 +02:00
|
|
|
get_header(); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="content" role="main">
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="post-0" class="post error404 not-found">
|
2010-02-14 02:00:22 +01:00
|
|
|
<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
|
2010-02-07 17:16:26 +01:00
|
|
|
<div class="entry-content">
|
2010-02-14 02:00:22 +01:00
|
|
|
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php get_search_form(); ?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
</div><!-- #post-0 -->
|
|
|
|
|
2010-02-08 19:02:23 +01:00
|
|
|
</div><!-- #content -->
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #container -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
// focus on search field after it has loaded
|
|
|
|
document.getElementById('s') && document.getElementById('s').focus();
|
2010-02-08 19:02:23 +01:00
|
|
|
</script>
|
2010-02-07 17:16:26 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php get_footer(); ?>
|