forked from puikinsh/Travelify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
29 lines (26 loc) · 1.17 KB
/
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
<?php
/**
* Displays the 404 error page of the theme.
*/
?>
<?php get_header(); ?>
<div id="content">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Error 404 - Page NOT Found', 'travelify' ); ?></a></h1>
</header>
<div class="entry-content clearfix" >
<p><?php _e( 'It seems we can\'t find what you\'re looking for.', 'travelify' ); ?></p>
<h3><?php _e( 'This might be because:', 'travelify' ); ?></h3>
<ul>
<li><?php _e( 'You have typed the web address incorrectly', 'travelify' ); ?></li>
<li><?php _e( 'The page you were looking for may have been moved, updated or deleted.', 'travelify' ); ?></li>
</ul>
<h3><?php _e( 'Please try the following:', 'travelify' ); ?></h3>
<ul>
<li><?php _e( 'Check for a mis-typed URL error', 'travelify' ); ?></li>
<li><?php _e( 'Press the refresh button on your browser.', 'travelify' ); ?></li>
<li><?php _e( 'Go back to', 'travelify' ); ?> <a href="<?php echo home_url() ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home"><?php _e( 'Homepage', 'travelify' ); ?></a></li>
</ul>
</div><!-- .entry-content -->
</div><!-- #content -->
<?php get_footer(); ?>