-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
35 lines (27 loc) · 887 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
<?php
/**
* The template for displaying 404 pages (not found).
*
* @package Timber Lite
* @since Timber 1.0
*/
if ( ! defined( 'ABSPATH' ) ){
exit; // Exit if accessed directly
}
get_header(); ?>
<div class="site-header site-header--placeholder"></div>
<div class="site-container site-content">
<section class="no-results not-found">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'timber-lite' ); ?></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?', 'timber-lite' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .page-content -->
</section><!-- .no-results -->
</div>
<div class="site-footer">
<div class="bar--fixed"></div>
</div>
<?php get_footer();