-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (29 loc) · 886 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
defined( 'ABSPATH' ) or die( 'Vulpix, use Flamethrower!' );
/**
* 404 template
*
* @link https://developer.wordpress.org/themes/basics/template-files/#common-wordpress-template-files
* @package Vulpix
* @since Vulpix 1.0.0
*/
get_header();
?>
<main role="main" class="site-content">
<div class="container">
<div class="grid">
<section class="error-404 not-found col-10 offset-1">
<header class="page-header">
<h1 class="page-title --center"><?php _e( 'Oops! That page can’t be found.', 'vulpix' ); ?></h1>
</header>
<div class="page-content">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'vulpix' ); ?></p>
<?php get_search_form(); ?>
</div>
</section>
</div>
<?php get_template_part( 'template-parts/template', 'page-footer' ); ?>
</div>
</main>
<?php
get_footer();