-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·33 lines (29 loc) · 983 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
<?php
/**
* The template for displaying 404 pages (not found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package CCW_Countries
*/
get_header(); ?>
<div class="o-hero">
<div class="o-hero__bg c-grid c-grid--h-center c-grid--v-center">
<div class="c-col--8">
<div class="o-hero__body">
<h1 class="o-hero__title"><?php esc_html_e( '404 - Not found', 'ccw_countries' ); ?></h1>
<p class="o-hero__subtitle c-lede"><?php esc_html_e( 'Sorry but we couldn\'t find the content you were looking for', 'ccw_countries' ); ?></p>
</div>
</div>
</div>
</div>
<div class="c-page-block c-page-block--alt-block u-text--center">
<div class="c-grid">
<div class="c-col c-col--12">
<p><?php esc_html_e( 'Try the navigation menu above or search for the content', 'ccw_countries' ); ?>:</p>
<?php get_search_form(); ?>
</div>
</div>
</div>
<?php
get_footer();