22 lines
461 B
PHP
22 lines
461 B
PHP
|
<?php get_header(); ?>
|
||
|
|
||
|
<!-- [ #container ] -->
|
||
|
<div id="container" class="innerBox">
|
||
|
<!-- [ #content ] -->
|
||
|
<div id="content" class="content wide">
|
||
|
|
||
|
<div class="error404">
|
||
|
<?php get_search_form(); ?>
|
||
|
</div>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
// focus on search field after it has loaded
|
||
|
document.getElementById('s') && document.getElementById('s').focus();
|
||
|
</script>
|
||
|
|
||
|
</div>
|
||
|
<!-- [ /#content ] -->
|
||
|
</div>
|
||
|
<!-- [ /#container ] -->
|
||
|
|
||
|
<?php get_footer(); ?>
|