-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
56 lines (29 loc) · 1.38 KB
/
404.php
File metadata and controls
56 lines (29 loc) · 1.38 KB
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
46
47
48
49
50
51
52
53
54
55
56
<?php get_header(); ?>
<div id="content">
<div id="inner-content">
<?php get_sidebar(); ?>
<div id="main">
<div class="inner-wrap">
<article id="post-not-found" class="post">
<header class="article-header">
<h1 class="not-found">Error 404 - Page not found</h1>
</header>
<section class="entry-content">
<p>The page you are looking doesn't exist!</p>
<p>But don't worry, you can find good stuff to read going to the <a href="<?php echo home_url() ?>" title="Go to home page">home page</a> or using the search form below.</p>
<form method="get" id="search" action="<?php bloginfo('url'); ?>/">
<div id="searchform-2">
<input type="text" value="<?php the_search_query(); ?>" name="s" id="search-text-2" />
<input type="submit" id="search-submit-2" value="Find it for me!" />
</div>
</form>
</section>
<footer class="article-footer">
</footer>
</article>
</div> <!-- end #inner-wrap -->
</div> <!-- end #main -->
<?php get_sidebar(); ?>
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>