forked from OpenDevelopmentMekong/wp-odm_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (27 loc) · 1.38 KB
/
404.php
File metadata and controls
35 lines (27 loc) · 1.38 KB
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('If you received this error after selecting a new geographic location from the top menu, it means the new location doesn\'t have an information page on this topic that the old location had. To see what information does exist for this new location you\'ve chosen simply click any of the navigation main menu items (News, Topics, Maps, Data, etc..) from the navigation menu above this message .','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(); ?>