forked from CRIK0VA/alethemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·26 lines (18 loc) · 873 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
25
26
<?php get_header(); ?>
<!-- Content -->
<div class="contacts-center">
<div class="content">
<div class="h2" ><?php _e('Error 404','aletheme'); ?></div>
<div class="contact-content">
<h1 class="errorh1"><?php _e('Error, Page not found','aletheme'); ?></h1>
<p class="errorh1"><?php _e('Sorry, but the page you\'re looking for has not found. Try checking the URL for errors, then hit the refresh<br /> button on your browser.','aletheme'); ?></p>
</div>
<div class="line"></div>
<div class="contact-footer">
<p class="errorh1">
<a href="<?php echo home_url();?>" class="gohomebut"><?php _e('Return to the homepage','aletheme'); ?></a>
</p>
</div>
</div>
</div>
<?php get_footer(); ?>