forked from ArrayHQ/publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (29 loc) · 1.07 KB
/
404.php
File metadata and controls
35 lines (29 loc) · 1.07 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
<?php
/**
* The template for displaying 404 pages.
*
* @package Publisher
* @since Publisher 1.0
*/
get_header(); ?>
<div id="main" class="site-main clearfix">
<div id="primary" class="content-area">
<div id="content" class="site-content container clearfix" role="main">
<header class="entry-header">
<div class="hgroup">
<h1 class="entry-title"><?php _e( '404 — Page Not Found', 'publisher' ); ?></h1>
</div>
</header><!-- .entry-header -->
<div class="block-text">
<div class="content-section">
<div id="content-wrap">
<p><?php _e( 'It looks like nothing was found at this location. Try using the navigation menu or the search box to locate the page you were looking for.', 'publisher' ); ?></p>
<?php get_search_form(); ?>
</div><!-- #content-wrap -->
</div><!-- .content-section -->
</div><!-- .block-text-->
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php get_sidebar(); ?>
</div><!-- #main .site-main -->
<?php get_footer(); ?>