forked from verdigado/sunflower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·34 lines (31 loc) · 833 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package sunflower
*/
get_header();
?>
<div id="content" class="container">
<div class="row">
<div class="col-12">
<main id="primary" class="site-main archive">
<header class="page-header mb-5 text-center">
<?php
printf( '<h1 class="page-title">%s</h1>', __( 'Oops! That page can’t be found.', 'sunflower' ) );
?>
</header><!-- .page-header -->
<div class="col-12 text-center mb-5 ">
<?php
esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'sunflower' );
get_search_form();
?>
</div>
</main><!-- #main -->
</div>
</div>
</div>
<?php
get_footer();