forked from Teplitsa/kandinsky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
32 lines (28 loc) · 805 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
<?php
/**
* The template for displaying the 404 template.
*
* @package Kandinsky
*/
get_header();
?>
<div class="page-header">
<div class="container">
<div class="text-column">
<h1 class="page-title"><?php esc_html_e( 'Error 404', 'knd'); ?></h1>
<div class="page-intro"><?php esc_html_e( 'Page not found', 'knd' ); ?></div>
</div>
</div>
</div>
<div class="page-content err404-content">
<div class="container">
<div class="the-content text-column err-404-text">
<p><?php esc_html_e( 'Unfortunately this page has been removed or never exists. Please, use the search field to find the information you need or visit the homepage.', 'knd' ); ?>
</div>
</div>
<div class="widget-full widget_search search-holder">
<?php get_search_form(); ?>
</div>
</div>
<?php
get_footer();