forked from vitathemes/notation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
43 lines (36 loc) · 1.44 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Wp_notes
*/
get_header();
?>
<main id="primary" class="c-main js-main">
<div class="c-main__wrapper">
<section class="error-404 not-found">
<header class="page-header">
<span style="font-size: 2.5rem;"><?php esc_html_e('404 ERROR', 'wp-notes') ?></span>
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.',
'wp-notes' ); ?></h1>
</header><!-- .page-header -->
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'wp-notes' ); ?></p>
<p style="margin: 3rem 0 4rem;">
<a href="<?php echo esc_url(home_url()); ?>" class="c-btn c-btn--secondary"><?php esc_html_e('Homepage', 'wp-notes') ?></a>
</p>
<div class="o-grid">
<div class="o-col-12_md-5">
<div class="c-widget widget_search">
<h3><?php esc_html_e('Search for:' , 'wp-notes'); ?></h3>
<?php get_search_form(); ?>
</div>
</div>
</div>
</div>
</section><!-- .error-404 -->
</div>
<?php
get_footer();