forked from milohuang/reverie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·24 lines (19 loc) · 867 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
<?php get_header(); ?>
<!-- Row for main content area -->
<div id="content" class="row">
<div id="main" class="twelve columns" role="main">
<div class="post-box">
<h1><?php _e('File Not Found', 'reverie'); ?></h1>
<div class="error">
<p class="bottom"><?php _e('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'reverie'); ?></p>
</div>
<p><?php _e('Please try the following:', 'reverie'); ?></p>
<ul>
<li><?php _e('Check your spelling', 'reverie'); ?></li>
<li><?php printf(__('Return to the <a href="%s">home page</a>', 'reverie'), home_url()); ?></li>
<li><?php _e('Click the <a href="javascript:history.back()">Back</a> button', 'reverie'); ?></li>
</ul>
</div>
</div><!-- /#main -->
</div><!-- End main row -->
<?php get_footer(); ?>