-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path404.php
More file actions
executable file
·44 lines (27 loc) · 804 Bytes
/
404.php
File metadata and controls
executable file
·44 lines (27 loc) · 804 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
39
40
41
42
43
44
<?php
/**
* The template for displaying 404 not found pages
*
* @since 1.0.0
* @package Coldbox
*/
get_header(); ?>
<main id="main" role="main">
<section class="main-inner">
<?php get_template_part( 'parts/title-box' ); ?>
<div class="container-outer">
<div class="container">
<div id="content" class="content">
<div class="content-inner">
<div class="error-messages">
<p><?php esc_html_e( 'The page does not exist, or has been moved. Try search or use menus to find what you are looking for.', 'coldbox' ); ?></p>
<?php get_search_form(); ?>
</div>
</div><!--/.content-->
</div>
<?php get_sidebar(); ?>
</div><!--/.container-->
</div><!--/.container-outer-->
</section>
</main>
<?php get_footer(); ?>