forked from Vizzuality/openDRI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
37 lines (20 loc) · 759 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
27
28
29
30
31
32
33
34
35
36
37
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap cf">
<main id="main" class="m-all t-2of3 d-5of7 cf" role="main" itemscope itemprop="mainContentOfPage" itemtype="http://schema.org/Blog">
<article id="post-not-found" class="hentry cf">
<h1><?php _e( 'Page not found', 'bonestheme' ); ?></h1>
<section class="entry-content">
The requested page was not found on this server
</section>
<section class="search">
<p><?php get_search_form(); ?></p>
</section>
<section>
<a href="<?php echo home_url(); ?>" class="home-404">go to homepage</a>
</section>
</article>
</main>
</div>
</div>
<?php get_footer(); ?>