forked from wp-blocks/modul-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
38 lines (27 loc) · 988 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
<?php
/**
* The template for displaying 404 pages (not found)
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="error-404 not-found">
<header class="entry-header main-width alignwide">
<h1 class="page-title has-primary-color"><?php esc_html_e('404', 'modul-r'); ?></h1>
<h2 class="text-center"><?php esc_html_e('Page not found', 'modul-r'); ?></h2>
</header><!-- /page-header -->
<div class="page-content main-width">
<p class="text-center"><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'modul-r'); ?></p>
<div>
<?php get_search_form(); ?>
</div>
<div class="entry-footer">
<?php modul_r_relateds(); ?>
</div>
</div><!-- /page-content -->
</div><!-- /error-404 -->
</main><!-- /main -->
</div><!-- /primary -->
<?php
get_footer();