-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
50 lines (46 loc) · 1.1 KB
/
Copy path404.php
File metadata and controls
50 lines (46 loc) · 1.1 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
47
48
49
50
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* @package WordPress
* @subpackage Anaglyph_Theme
* @since Anaglyph Theme 1.0
*/
get_header(); ?>
<?php
global $anaglyph_config;
?>
<!-- Page Title -->
<section id="page-title">
<div class="title">
<h1 class="reset-margin"><?php _e( 'Not found', 'anaglyph-lite' ); ?></h1>
</div>
<?php anaglyph_custom_image('404-titleimage'); ?>
</section>
<!-- end Page Title -->
<?php anaglyph_add_breadcrumbs(); ?>
<section id="not-found" class="block" role="main">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-content">
<div class="center">
<div class="featured-404">
<?php anaglyph_custom_image('404-image'); ?>
</div>
</div>
<?php
if (!empty($anaglyph_config['404-text'])) {
echo '<div class="entry-content">';
echo '<p>'.$anaglyph_config['404-text'] .'</p>';
echo '</div>';
}
?>
<?php get_search_form(); ?>
</div>
</div>
</div>
</div>
</section>
<?php
get_footer();