This repository was archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
76 lines (54 loc) · 2.05 KB
/
404.php
File metadata and controls
76 lines (54 loc) · 2.05 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
*
* The template for displaying 404 pages (not found)
*
* @package WordPress
* @subpackage Materialize
* @since Materialize 1.0
*/
get_header(); ?>
<?php
if( (bool)get_theme_mod( 'mythemes-show-breadcrumbs', true ) ){
?>
<!-- the breadcrumbs content -->
<div class="mythemes-page-header">
<!-- the breadcrumbs container ( align to center ) -->
<div class="container">
<div class="row">
<div class="col s12">
<!-- the breadcrumbs navigation path -->
<nav class="mythemes-nav-inline">
<ul class="mythemes-menu">
<!-- the home link -->
<?php echo mythemes_breadcrumbs::home(); ?>
<!-- the last arrow from path -->
<li></li>
</ul>
</nav>
<!-- the headline -->
<h1><?php printf( __( 'Error %s' , 'materialize' ) , number_format_i18n( 404 ) ); ?></h1>
</div>
</div>
</div>
</div>
<?php
}
?>
<div class="parallax-container">
<div class="parallax footer-p"><img src="<?php echo get_stylesheet_directory_uri(); ?>/media/_frontend/img/404.svg"></div>
<div class="container">
<div class="row">
<!-- the page content length ( 12 columns ) -->
<section class="col s12 ">
<!-- the page content -->
<div>
<h1 class="error-404"><?php echo number_format_i18n( 404 ); ?></h1>
<big class="error-404-message"><?php echo materialize_not_found_message(); ?></big>
<p class="error-404-description"><?php echo materialize_not_found_description(); ?></p>
<div>
</section>
</div>
</div><!-- .container -->
</div>
<?php get_footer(); ?>