-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.php
31 lines (24 loc) · 896 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
26
27
28
29
30
31
<?php get_header(); ?>
<div class="main-content">
<div class="primary-content">
<div id="content" class="error-page">
<h2><span>Error 404</span> <br /> What you are looking for is no longer here</h2>
<p><strong>You can try</strong></p>
<dl>
<dt></dt>
<dd> Going <a href="<?php echo home_url(); ?>">HOME</a>
or doing a Search.</dd>
</dl>
<form id="searchform" method="get" action="<?php echo home_url(); ?>">
<div>
<input type="text" name="s" id="s" size="25" />
<input type="submit" value="<?php _e('Search'); ?>" id="error-search" />
</div>
</form>
</div> <!-- end #content -->
</div><!-- end .primary-content -->
<div class="secondary-content">
<?php get_sidebar(); ?>
</div>
</div> <!-- end .main-content -->
<?php get_footer(); ?>