forked from bigspring/monolith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
29 lines (15 loc) · 791 Bytes
/
page.php
File metadata and controls
29 lines (15 loc) · 791 Bytes
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
<?php // Default Page Template ?>
<? get_template_parts( array( 'parts/html-header', 'parts/header' ) ); ?>
<div class="main" role="document">
<div class="<?= CONTAINER_CLASSES; ?>">
<? get_template_part('parts/breadcrumb'); // load the breadcrumbs ?>
<div class="<?= ROW_CLASSES ?>">
<div class="span<?= MAIN_SIZE ?>" role="main">
<? get_template_part('parts/page-header'); // load the page header ?>
<? get_template_part('parts/page-content'); // load the page content ?>
</div><!-- /MAIN_SIZES -->
<? get_template_part('parts/sidebar'); // load the right sidebar ?>
</div><!-- /ROW_CLASSES -->
</div><!-- /CONTAINER_CLASSES -->
</div><!-- /main -->
<?php get_template_parts( array( 'parts/footer','parts/html-footer' ) ); ?>