-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.php
29 lines (26 loc) · 932 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
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Noah Lite
* @since Noah Lite 1.0.0
*/
get_header(); ?>
<div id="primary" class="content-area u-container-sides-spacings">
<div class="o-wrapper u-container-width">
<main id="main" class="o-wrapper site-main" role="main">
<div class="c-page-header">
<h1 class="c-page-header__title h0"><?php esc_html_e( 'Oups!', 'noah-lite'); ?></h1>
<p class="c-page-header__meta h4"><?php esc_html_e( "We can't seem to find the page you're looking for.", 'noah-lite'); ?></p>
</div>
</main><!-- #main -->
</div><!-- .o-wrapper -->
</div><!-- #primary -->
<?php get_footer();