-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
41 lines (34 loc) · 1.02 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
<?php
/**
* @package WordPress
* @subpackage Oakland
* @since Oakland 1.0
*
* 404 Error Page Template
* Created by CMSMasters
*
*/
get_header();
global $error_search_show,
$error_sitemap_show,
$error_sitemap_link;
?>
<!-- _________________________ Start Content _________________________ -->
<section class="middle_content">
<div class="entry">
<div class="error">
<h1>404</h1>
<h3><?php _e("We're sorry, but the page you were looking for doesn't exist.", 'cmsmasters'); ?></h3>
<?php
if ($error_search_show) {
get_search_form();
}
?>
<?php if ($error_sitemap_show && $error_sitemap_link != ''){ ?>
<a href="<?php echo $error_sitemap_link; ?>" class="with_arrow"><?php _e('Sitemap', 'cmsmasters'); ?></a>
<?php } ?>
</div>
</div>
</section>
<!-- _________________________ Finish Content _________________________ -->
<?php get_footer(); ?>