forked from OpenDevelopmentMekong/wp-odm_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
35 lines (27 loc) · 1.2 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
30
31
32
33
34
35
<?php get_header(); ?>
<article>
<section id="content" class="single-post">
<div class="container">
<div class="row">
<div class="eight columns offset-by-four align-center">
<h1><?php _e('Not found!','odm'); ?></h1>
</div>
</div>
<div class="row">
<div class="eight columns offset-by-four align-center">
<p><?php _e('The contents you are requesting do not seem to exist. Please try using the search function on the top-right area of the screen or browsing other country sites by clicking the links on the top-left area.','odm'); ?></p>
</div>
</div>
<div class="row">
<div class="four columns offset-by-six align-center">
<p><a class="button" onClick="history.go(-1)"><?php _e('Back to the previous page','odm'); ?></a></p>
<p><a class="button" href="/"><?php _e('Go to the current site\'s home','odm'); ?></a></p>
<?php
if (function_exists('button_user_feedback_form')): ?>
<p><a class="button" id="user_feedback_form" ><?php _e('Contact us','odm'); ?></a></p>
<?php endif; ?>
</div>
</div>
</section>
</article>
<?php get_footer(); ?>