-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
38 lines (27 loc) · 720 Bytes
/
404.php
File metadata and controls
38 lines (27 loc) · 720 Bytes
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
/**
* This page template is used to display a 404 error message.
*
* @package Block Lite
* @since Block Lite 1.0
*/
get_header(); ?>
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN .content -->
<div class="content">
<!-- BEGIN .sixteen columns -->
<section class="sixteen columns">
<!-- BEGIN .entry-content -->
<article class="entry-content">
<h1><?php esc_html_e( 'Not Found, Error 404', 'block-lite' ); ?></h1>
<p><?php esc_html_e( 'The page you are looking for no longer exists.', 'block-lite' ); ?></p>
<!-- END .entry-content -->
</article>
<!-- END .sixteen columns -->
</section>
<!-- END .content -->
</div>
<!-- END .row -->
</div>
<?php get_footer(); ?>