forked from georgemiler/reactor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
45 lines (32 loc) · 1.38 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
/**
* The template for displaying 404 pages
*
* @package Reactor
* @subpackge Templates
* @since 1.0.0
*/
?>
<?php get_header(); ?>
<div id="primary" class="site-content">
<?php reactor_content_before(); ?>
<div id="content" role="main">
<div class="row">
<div class="<?php reactor_columns(); ?>">
<?php reactor_inner_content_before(); ?>
<article id="post-0" class="post error404 no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e('This is somewhat embarrassing, isn’t it?', 'reactor'); ?></h1>
</header>
<div class="entry-content panel">
<p><?php _e('It seems we can’t find what you’re looking for. Perhaps searching will help.', 'reactor'); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php reactor_inner_content_after(); ?>
</div><!-- .columns -->
</div><!-- .row -->
</div><!-- #content -->
<?php reactor_content_after(); ?>
</div><!-- #primary -->
<?php get_footer(); ?>