-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
43 lines (32 loc) · 967 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
32
33
34
35
36
37
38
39
40
41
42
43
<?php
global $soup;
get_header();
the_post();
?>
<div id="content">
<div id="contentHeadA" class="article5"><article>
<div id="contentHead"><header>
<<?php echo $soup->pageNameTag; ?> id="pageName" class="entry-title">
File Not Found
</<?php echo $soup->pageNameTag; ?>>
</header></div>
<div id="contentA">
<p>Apologies, but we were unable to find what you were looking for. Perhaps searching will help.</p>
<form method="get" action="<?php echo home_url(); ?>" class="search-form search-404">
<div>
<label for="s-404notfound" class="search-label">Search this Site</label>
<input type="text" name="s" id="s-404notfound" class="search-input" />
<input type="submit" value="Search" class="search-submit" />
</div>
</form>
</div>
<!-- //#contentA -->
</article></div
<!-- //#contentHeadA -->
<?php
get_sidebar();
//#content [get_sidebar() closes div #content]
?>
<?
get_footer();
?>