-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
44 lines (34 loc) · 917 Bytes
/
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
41
42
43
44
<?php
get_header();
$color = get_cmb_value( 'large-title-color' );
if ( empty( $color ) ) $color = 'forest';
?>
<?php the_large_title(); ?>
<?php the_showcase(); ?>
<?php the_thumb_showcase(); ?>
<div id="content" class="wrap group content-two-column <?php print $color ?>" role="main">
<div class="quarter sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar-generic') ) : ?><!-- no sidebar --><?php endif; ?>
</div>
<div class="three-quarter">
<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
<?php
if ( function_exists( 'bcn_display' ) ) {
bcn_display();
}
?>
</div>
<?php
// do post loop
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
the_accordion();
?>
</div>
</div><!-- #content -->
<?php
get_footer();
?>