forked from eddiemachado-zz/bones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·43 lines (22 loc) · 1.11 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
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap clearfix">
<div id="main" class="eightcol first clearfix" role="main">
<article id="post-not-found" class="hentry clearfix">
<header class="article-header">
<h1><?php _e("Epic 404 - Article Not Found", "bonestheme"); ?></h1>
</header> <!-- end article header -->
<section class="entry-content">
<p><?php _e("The article you were looking for was not found, but maybe try looking again!", "bonestheme"); ?></p>
</section> <!-- end article section -->
<section class="search">
<p><?php get_search_form(); ?></p>
</section> <!-- end search section -->
<footer class="article-header">
<p><?php _e("This is the 404.php template.", "bonestheme"); ?></p>
</footer> <!-- end article footer -->
</article> <!-- end article -->
</div> <!-- end #main -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>