-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
24 lines (24 loc) · 901 Bytes
/
404.php
File metadata and controls
24 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<?php get_header(); ?>
<!-- CONTENT -->
<div class="rh-container">
<div class="rh-content-wrap clearfix">
<!-- Main Side -->
<div class="main-side clearfix">
<div class="post errorpage">
<span class="error-text"><?php esc_html_e('Houston, we have a problem.', 'rehub-theme'); ?></span>
<h2>404</h2>
<span class="error-text"><?php esc_html_e('The page you are looking for has not been found.', 'rehub-theme'); ?></span>
<div class="clearfix"></div>
<?php get_search_form(); ?>
</div>
</div>
<!-- /Main Side -->
<!-- Sidebar -->
<?php get_sidebar(); ?>
<!-- /Sidebar -->
</div>
</div>
<!-- /CONTENT -->
<!-- FOOTER -->
<?php get_footer(); ?>