-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
46 lines (37 loc) · 1.46 KB
/
404.php
File metadata and controls
46 lines (37 loc) · 1.46 KB
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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Catch Themes
* @subpackage Catch_Box
* @since Catch Box 1.0
*/
get_header(); ?>
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Error 404 - Page Not Found.', 'catchbox' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'It seems we can’t find what you’re looking for.', 'catchbox' ); ?></p>
<h2><?php _e( 'This might be because:', 'catchbox' ); ?></h2>
<p><?php _e( 'You have typed the web address incorrectly, or the page you were looking for may have been moved, updated or deleted.', 'catchbox' ); ?></p>
<h2><?php _e( 'Please try the following options instead:', 'catchbox' ); ?></h2>
<p><?php _e( 'Check for a mis-typed URL error, then press the refresh button on your browser or Use the search box below.', 'catchbox' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</div><!-- #content -->
<?php
/**
* catchbox_after_content hook
*
*/
do_action( 'catchbox_after_content' ); ?>
</div><!-- #primary -->
<?php
/**
* catchbox_after_primary hook
*
*/
do_action( 'catchbox_after_primary' ); ?>
<?php get_footer(); ?>