forked from themeblvd/jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
59 lines (38 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* The template file for 404's.
*
* WARNING: This template file is a core part of the
* Theme Blvd WordPress Framework. It is advised
* that any edits to the way this file displays its
* content be done with via actions, filters, and
* template parts.
*
* @author Jason Bobich <[email protected]>
* @copyright 2009-2017 Theme Blvd
* @package Jump_Start
* @subpackage Theme_Blvd
* @since Theme_Blvd 2.0.0
*/
get_header();
?>
<div id="sidebar_layout" class="clearfix">
<div class="sidebar_layout-inner">
<div class="row grid-protection">
<!-- CONTENT (start) -->
<div id="content" class="<?php echo esc_attr( themeblvd_get_column_class( 'content' ) ); ?> clearfix" role="main">
<div class="inner">
<?php themeblvd_content_top(); ?>
<?php themeblvd_get_template_part( '404' ); ?>
<?php themeblvd_content_bottom(); ?>
</div><!-- .inner -->
</div><!-- #content -->
<!-- CONTENT (end) -->
<!-- SIDEBARS (start) -->
<?php get_sidebar( 'left' ); ?>
<?php get_sidebar( 'right' ); ?>
<!-- SIDEBARS (end) -->
</div><!-- .grid-protection -->
</div><!-- .sidebar_layout-inner -->
</div><!-- #sidebar_layout -->
<?php get_footer(); ?>