-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
36 lines (29 loc) · 1.25 KB
/
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
<?php
/**
* Apocrypha Theme 404 Page
* Andrew Clayton
* Version 1.0.0
* 10-11-2013
*/
?>
<?php get_header(); ?>
<div id="content" class="no-sidebar" role="main">
<?php apoc_breadcrumbs(); ?>
<header class="entry-header <?php post_header_class(); ?>">
<h1 class="entry-title">Error - Page Not Found</h1>
<p class="entry-byline">Sorry, but this page does not exist, or is not accessible at this time.</p>
</header>
<div id="error-404">
<p id="tagline-404">You have ventured into an uninhabitable land; but all is not lost. You may still search for what you seek!</p>
<form role="search" method="get" class="search-form" id="search-404" action="<?php echo SITEURL . '/advsearch/'; ?>">
<select name="type" id="search-for">
<option value="posts">Articles</option>
<option value="pages">Pages</option>
<option value="topics">Topics</option>
<option value="members">Members</option>
<option value="groups">Guilds</option>
</select>
<input class="search-text" type="text" name="s" value="Search Tamriel Foundry" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;"/>
</div>
</div><!-- #content -->
<?php get_footer(); // Load the footer ?>