-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path404.php
More file actions
35 lines (27 loc) · 775 Bytes
/
404.php
File metadata and controls
35 lines (27 loc) · 775 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
/**
* Error - 404 File Not Found
*
* Error page template. Makes use of the `parts/content-empty` partial. This is
* for design consistency and to reduce duplication.
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
* @link https://developer.wordpress.org/themes/template-files-section/partial-and-miscellaneous-template-files/#404-php
*
* @package Granule
* @subpackage Template
* @author Ben Gillbanks <ben@prothemedesign.com>
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU Public License
*/
get_header();
?>
<main id="main">
<div class="header-404">
<?php granule_svg( '404' ); ?>
</div>
<div class="main-content">
<?php get_template_part( 'parts/content-empty' ); ?>
</div>
</main>
<?php
get_footer();