forked from jameskoster/highwind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
55 lines (37 loc) · 1.09 KB
/
404.php
File metadata and controls
55 lines (37 loc) · 1.09 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* The template for displaying 404 pages (Not Found).
* @package highwind
* @since 1.0
*/
?>
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
get_header();
?>
<?php highwind_content_before(); ?>
<section class="content" role="main">
<?php highwind_content_top(); ?>
<header class="page-header">
<?php highwind_content_header_top(); ?>
<h1 class="page-title" data-text="<?php the_title(); ?>"><?php _e( '404 not Found', 'highwind' ); ?></h1>
<?php highwind_content_header_bottom(); ?>
</header><!-- /.page-header -->
<section class="article-content">
<?php highwind_content_entry_top(); ?>
<blockquote>
<p>Out, out, brief candle!</p>
<p>Life's but a walking shadow; a poor player,</p>
<p>That struts and frets his hour upon the stage,</p>
<p>And then is heard no more: it is a tale</p>
<p>Told by an idiot, full of sound and fury,</p>
<p>Signifying nothing.</p>
</blockquote>
<?php
?>
<?php highwind_content_entry_bottom(); ?>
</section>
<?php highwind_content_bottom(); ?>
</section>
<?php highwind_content_after(); ?>
<?php get_footer(); ?>