-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
25 lines (24 loc) · 920 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
<?php get_header(); ?>
<div id="main-area">
<div id="container">
<div class="post">
<h2><?php _e( '404 Page Not Found', 'Sunblog' ); ?></h2>
<div class="entry">
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'Sunblog' ); ?></p>
<div class="search-box-404">
<?php get_search_form(); ?>
</div>
<p> </p>
</div><!-- .entry-content -->
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
</div>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
</div>
</body>
</html>