-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
40 lines (27 loc) · 864 Bytes
/
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
<?php
/**
* Template for displaying 404 Not Found error
*
* @package Reginald
* @since Reginald 1.0
*/
?>
<?php get_header(); ?>
<main class="site-main" role="main">
<section class="content-container">
<header class="page-header">
<h1><?php esc_html_e( '404 Not Found', 'reginald' ); ?></h1>
</header>
<article class="error-404 not-found">
<section class="entry-content">
<p>
<?php esc_html_e( 'Oops! That page can’t be found.', 'reginald' ); ?>
<br />
<?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'reginald' ); ?>
</p>
<?php get_search_form(); ?>
</section><!-- .entry-content -->
</article><!-- .error-404 -->
</section><!-- .content-container -->
</main><!-- .site-main -->
<?php get_footer(); ?>