-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
executable file
·35 lines (29 loc) · 889 Bytes
/
404.php
File metadata and controls
executable file
·35 lines (29 loc) · 889 Bytes
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
/**
* The template for displaying 404 pages (not found).
*
* @package MC
*/
get_header(); ?>
<div class="uk-container uk-container-large">
<div uk-grid>
<div id="primary" class="uk-width-s">
<header class="entry__header">
<h1 class="hdg hdg--1">
<?php _e('Page Not Found', 'mc-starter'); ?>
</h1>
</header><!-- /.entry__header -->
<div class="entry__content">
<?php
_e(
'<p>It seems we can’t find what you’re looking for. Perhaps searching can help.</p>',
'mc-starter'
);
get_search_form();
?>
</div><!-- /.entry__content -->
</div><!-- /#primary -->
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer();