-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·44 lines (22 loc) · 1.04 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
<?php get_header(); ?>
<div class="container">
<div id="content">
<div id="main" class="col-md-8 clearfix" role="main">
<article id="post-not-found" class="hentry clearfix">
<header class="article-header">
<h1>404. Whelp...this sucks</h1>
</header> <?php // end article header ?>
<section class="entry-content">
<p><?php _e( 'The page you were looking for was not found.', 'bonestheme' ); ?></p>
</section> <?php // end article section ?>
<section class="search">
<p><?php get_search_form(); ?></p>
</section> <?php // end search section ?>
<footer class="article-footer">
<p>Look, I can see you're really upset about this. I honestly think you ought to sit down calmly, take a stress pill, and think things over. </p>
</footer> <?php // end article footer ?>
</article> <?php // end article ?>
</div> <?php // end #main ?>
</div> <?php // end #content ?>
</div> <?php // end ./container ?>
<?php get_footer(); ?>