-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
41 lines (27 loc) · 759 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
41
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Compass
* @subpackage HybridCore
* @copyright Copyright (c) 2015, Flagship Software, LLC
* @license GPL-2.0+
* @since 1.0.0
*/
?>
<?php get_header(); ?>
<div <?php hybrid_attr( 'site-inner' ); ?>>
<?php tha_content_before(); ?>
<main <?php hybrid_attr( 'content' ); ?>>
<?php tha_content_top(); ?>
<?php hybrid_get_menu( 'breadcrumbs' ); ?>
<?php tha_entry_before(); ?>
<?php get_template_part( 'content/error', '404' ); ?>
<?php tha_entry_after(); ?>
<?php tha_content_bottom(); ?>
</main><!-- #content -->
<?php tha_content_after(); ?>
<?php hybrid_get_sidebar( 'primary' ); ?>
</div><!-- #site-inner -->
<?php
get_footer();