-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
404.php
34 lines (21 loc) · 879 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
<?php get_template_part( 'header' ); ?>
<?php get_template_part( 'template-parts/header/header-basic' ); ?>
<div id="main">
<div class="inner">
<?php if ( get_theme_mod( 'hovercraft_sidebar_status' ) == 1 ) { ?><div id="primary"><?php } else { ?><div id="primary-wide"><?php } ?>
<?php get_template_part( 'template-parts/content/breadcrumbs' ); ?>
<div id="content-wrapper">
<h1>404 Error (Not Found)</h1>
<?php get_template_part( 'template-parts/content/loop' ); ?>
<div class="clear"></div>
</div><!-- content-wrapper -->
<div class="clear"></div>
</div><!-- primary -->
<?php if ( get_theme_mod( 'hovercraft_sidebar_status' ) == 1 ) {
get_template_part( 'sidebar' );
} ?>
<?php get_template_part( 'template-parts/content/pagination' ); ?>
<div class="clear"></div>
</div><!-- inner -->
</div><!-- main -->
<?php get_template_part( 'footer' ); ?>