-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
41 lines (32 loc) · 886 Bytes
/
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
/**
*
* Materia Lite WordPress Theme by Iceable Themes | https://www.iceablethemes.com
*
* Copyright 2017 Mathieu Sarrasin - Iceable Media
*
* 404 Page Template
*
*/
get_header();
?>
<main class="container">
<?php
get_template_part( 'part-title' );
?>
<div id="single-container" class="single-container with-sidebar">
<div id="page-<?php the_ID(); ?>" <?php post_class( 'entry-wrap type-page' ); ?>>
<div id="page-container" class="post-content entry-content">
<h2><?php esc_html_e( 'Page Not Found', 'materia-lite' ); ?></h2>
<p><?php esc_html_e( 'What you are looking for isn\'t here...', 'materia-lite' ); ?></p>
<p><?php esc_html_e( 'Maybe a search will help ?', 'materia-lite' ); ?></p>
<p><?php get_search_form(); ?></p>
</div>
</div>
</div>
<div id="sidebar-container">
<?php get_sidebar(); ?>
</div>
</main>
<?php
get_footer();