-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
53 lines (37 loc) · 1.12 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
44
45
46
47
48
49
50
51
52
53
<?php
/**
* This page template is used to display a 404 error message.
*
* @package Natural Lite
* @since Natural Lite 1.0
*/
get_header(); ?>
<!-- BEGIN .row -->
<div class="row">
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<!-- BEGIN .eleven columns -->
<div class="eleven columns">
<div class="post-area">
<h1 class="headline"><?php esc_html_e( 'Not Found, Error 404', 'natural-lite' ); ?></h1>
<p><?php esc_html_e( 'The page you are looking for no longer exists.', 'natural-lite' ); ?></p>
</div>
<!-- END .eleven columns -->
</div>
<!-- BEGIN .five columns -->
<div class="five columns">
<?php get_sidebar( 'page' ); ?>
<!-- END .five columns -->
</div>
<?php else : ?>
<!-- BEGIN .sixteen columns -->
<div class="sixteen columns">
<div class="post-area full">
<h1 class="headline"><?php esc_html_e( 'Not Found, Error 404', 'natural-lite' ); ?></h1>
<p><?php esc_html_e( 'The page you are looking for no longer exists.', 'natural-lite' ); ?></p>
</div>
<!-- END .sixteen columns -->
</div>
<?php endif; ?>
<!-- END .row -->
</div>
<?php get_footer(); ?>