-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path404.php
More file actions
14 lines (14 loc) · 856 Bytes
/
404.php
File metadata and controls
14 lines (14 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php get_header(); ?>
<div class="row">
<div class="large-12 columns">
<h1><?php _e('Well Hellicopter, What the fudge, Hell\'s bells! (404)', 'projectyeti'); ?></h1>
<span><?php _e('You might be wondering what went wrong... here\'s some possible reasons!', 'projectyeti'); ?></span>
<ul>
<li><?php _e('You may have missed type the URL address', 'projectyeti'); ?></li>
<li><?php _e('You may have copied and pasted the URL incorrectly', 'projectyeti'); ?></li>
<li><?php _e('The page you are attempting to access no longer exists', 'projectyeti'); ?></li>
</ul>
<span><?php _e('You may be able to find what you\'re looking for by visiting our', 'projectyeti'); ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php _e('homepage', 'projectyeti'); ?></a></span>
</div>
</div>
<?php get_footer(); ?>