Melville/404.php
2020-03-15 10:26:50 -04:00

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(); ?>