forked from SnowDayGroup/Wolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
34 lines (23 loc) · 825 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package wolf
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<article id="post-0" class="post not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'wolf' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<?php do_action('wolf_before_404'); ?>
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'wolf' ); ?></p>
<?php get_search_form(); ?>
<?php do_action('wolf_after_404'); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 .post .not-found -->
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>