-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
42 lines (30 loc) · 859 Bytes
/
Copy path404.php
File metadata and controls
42 lines (30 loc) · 859 Bytes
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
<?php
/*
* The 404 template
*
* @package Inception
* @author Adam Chamberlin
* @since 1.0
*
*/
?>
<?php get_header(); // Load the header ?>
<section id="content">
<section id="main" role="main">
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title">
<?php __( 'Not Found', 'inception' ); ?>
</h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p>
<?php __( 'Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'inception' ); ?>
</p>
<?php get_search_form(); ?>
</div>
</article><!-- #post-0 -->
</section><!-- #main -->
<?php get_sidebar(); // Load the sidebar ?>
</section><!-- #content -->
<?php get_footer(); // Load the footer ?>