-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
23 lines (19 loc) · 819 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
<?php get_header() ?>
<div id="container">
<div id="content">
<div id="post-0" class="post error404 not-found">
<h2 class="entry-title"><?php _e( 'Not Found', 'sandbox' ) ?></h2>
<div class="entry-content">
<p><?php _e( 'Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'sandbox' ) ?></p>
</div>
<form id="searchform-404" class="blog-search" method="get" action="<?php bloginfo('home') ?>">
<div>
<input id="s-404" name="s" class="text" type="text" value="<?php the_search_query() ?>" size="40" />
<input class="button" type="submit" value="<?php _e( 'Find', 'sandbox' ) ?>" />
</div>
</form>
</div><!-- .post -->
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar() ?>
<?php get_footer() ?>