-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path404.php
40 lines (25 loc) · 864 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
35
36
37
38
39
40
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Kava
*/
get_header();
do_action( 'kava-theme/site/site-content-before', '404' ); ?>
<div <?php kava_content_class() ?>>
<div class="row">
<?php do_action( 'kava-theme/site/primary-before', '404' ); ?>
<div id="primary" class="col-xs-12">
<?php do_action( 'kava-theme/site/main-before', '404' ); ?>
<main id="main" class="site-main">
<?php kava_theme()->do_location( 'single', 'template-parts/404' ); ?>
</main><!-- #main -->
<?php do_action( 'kava-theme/site/main-after', '404' ); ?>
</div><!-- #primary -->
<?php do_action( 'kava-theme/site/primary-after', '404' ); ?>
</div>
</div>
<?php do_action( 'kava-theme/site/site-content-after', '404' );
get_footer();