-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
32 lines (25 loc) · 691 Bytes
/
404.php
File metadata and controls
32 lines (25 loc) · 691 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage BirdFILED
* @since BirdFILED 1.0
*/
get_header(); ?>
<div id="content">
<?php birdfield_content_header(); ?>
<div class="container">
<article class="hentry">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Error 404 - Not Found', 'birdfield' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'birdfield' ); ?></p>
<?php get_search_form(); ?>
</div>
</article>
</div>
<?php birdfield_content_footer(); ?>
</div>
<?php get_footer(); ?>