19 lines
510 B
PHP
19 lines
510 B
PHP
<?php
|
|
/**
|
|
* The template for displaying 404 pages (Not Found).
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<h1 class="page-title"><?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
|
|
document.getElementById('s') && document.getElementById('s').focus();
|
|
</script>
|
|
|
|
<?php get_footer(); ?>
|