-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
45 lines (36 loc) · 1.46 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
37
38
39
40
41
42
43
44
45
<?php
/**
* Apocrypha Theme 404 Page
* Andrew Clayton
* Version 2.0
* 9-19-2014
*/
?>
<?php get_header(); ?>
<div id="content" role="main">
<?php apoc_breadcrumbs(); ?>
<article id="error-404" class="post">
<header class="post-header <?php apoc_post_header_class('post'); ?>">
<h1 class="post-title"><?php apoc_title(); ?></h1></h1>
<p class="post-byline"><?php apoc_description(); ?></p>
</header>
<section class="post-content double-border">
<blockquote>Turn back, traveller, have ventured into an uninhabitable land. Do not despair, all is not lost. You may still search for what you seek!</blockquote>
<form role="search" method="post" class="search-form" id="search-404" action="<?php echo SITEURL . '/advsearch/'; ?>">
<fieldset>
<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;"/>
<button type="submit" class="submit"><i class="fa fa-search"></i>Find it!</button>
</fieldset>
</form>
</section>
</article>
</div>
<?php apoc_primary_sidebar(); ?>
<?php get_footer(); ?>