-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpage.php
More file actions
45 lines (33 loc) · 1.33 KB
/
Copy pathpage.php
File metadata and controls
45 lines (33 loc) · 1.33 KB
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
<?php
get_template_part( 'header' ); ?>
<?php get_template_part( 'template-parts/header/header-basic' ); ?>
<?php if ( hovercraft_should_show_main_content() ) : ?>
<div id="main">
<div class="inner">
<?php $show_sidebar = hovercraft_should_show_sidebar(); ?>
<?php if ( $show_sidebar ) : ?>
<div id="primary">
<?php else : ?>
<div id="primary-wide">
<?php endif; // end sidebar ?>
<div id="content-wrapper">
<?php get_template_part( 'template-parts/content/featured-image' ); ?>
<div id="content-padded">
<?php get_template_part( 'template-parts/misc/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/comments/comments' ); ?>
<div class="clear"></div>
</div><!-- content-padded -->
</div><!-- content-wrapper -->
<div class="clear"></div>
</div><!-- primary / primary-wide -->
<?php if ( $show_sidebar ) : ?>
<?php get_template_part( 'sidebar' ); ?>
<?php endif; // end sidebar ?>
<div class="clear"></div>
</div><!-- inner -->
</div><!-- main -->
<?php endif; // end main content ?>
<?php get_template_part( 'footer' ); ?>