-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
page.php
40 lines (29 loc) · 1.46 KB
/
page.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 get_template_part( 'header' ); ?>
<?php get_template_part( 'template-parts/header/header-basic' ); ?>
<?php $hovercraft_homepage_hide_main_checked = get_theme_mod( 'hovercraft_homepage_hide_main' ) ? true : false;
if ( !is_front_page() || ( is_front_page() && $hovercraft_homepage_hide_main_checked != true ) ) { ?>
<div id="main">
<div class="inner">
<?php $hovercraft_sidebar_status_checked = get_theme_mod( 'hovercraft_sidebar_status' ) ? true : false;
if ( $hovercraft_sidebar_status_checked == true ) { ?><div id="primary"><?php } else { ?><div id="primary-wide"><?php } ?>
<div id="content-wrapper">
<?php get_template_part( 'template-parts/content/featured-image' ); ?>
<div id="content-padded">
<?php get_template_part( 'template-parts/content/breadcrumbs' ); ?>
<?php get_template_part( 'template-parts/content/title' ); ?>
<?php get_template_part( 'template-parts/content/loop' ); ?>
<?php get_template_part( 'template-parts/content/pagination' ); ?>
<?php get_template_part( 'template-parts/content/comments' ); ?>
<div class="clear"></div>
</div><!-- content-padded -->
</div><!-- content-wrapper -->
<div class="clear"></div>
</div><!-- primary -->
<?php if ( get_theme_mod( 'hovercraft_sidebar_status' ) == 1 ) {
get_template_part( 'sidebar' );
} ?>
<div class="clear"></div>
</div><!-- inner -->
</div><!-- main -->
<?php } //endif is_front_page ?>
<?php get_template_part( 'footer' ); ?>