forked from iGovPhil/gwt-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
30 lines (24 loc) · 889 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @package GWT
* @since Government Website Template 2.0
*/
get_header();
?>
<div id="main-content" class="row container-main" >
<div class="large-2 medium-2 columns"><p></p></div>
<div class="large-8 medium-8 columns">
<div class="notfound">
<h1 class="page-title"><?php _e( 'Sorry, the page you are looking for cannot be found', 'gwt_wp' ); ?></h1>
<div class="page-content notfound">
<p>The page you requested may have been moved to a new location or removed from the site.
<br>Go back to the <a href="<?php echo esc_url(home_url())?>">HOME PAGE</a> or find what you are looking for in the search box below.</p>
<aside class="search-404"><?php get_search_form(); ?></aside>
</div>
</div>
</div>
<div class="large-2 medium-2 columns"><p></p></div>
</div>
<?php get_footer(); ?>