-
Notifications
You must be signed in to change notification settings - Fork 34
/
404.php
42 lines (24 loc) · 1.08 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
<?php get_header(); ?>
<div id="content" class="clearfix row-fluid">
<div id="main" class="span12 clearfix" role="main">
<article id="post-not-found" class="clearfix">
<header>
<div class="hero-unit">
<h1><?php _e("Epic 404 - Article Not Found","bonestheme"); ?></h1>
<p><?php _e("This is embarassing. We can't find what you were looking for.","bonestheme"); ?></p>
</div>
</header> <!-- end article header -->
<section class="post_content">
<p><?php _e("Whatever you were looking for was not found, but maybe try looking again or search using the form below.","bonestheme"); ?></p>
<div class="row-fluid">
<div class="span12">
<?php get_search_form(); ?>
</div>
</div>
</section> <!-- end article section -->
<footer>
</footer> <!-- end article footer -->
</article> <!-- end article -->
</div> <!-- end #main -->
</div> <!-- end #content -->
<?php get_footer(); ?>