-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-home.php
executable file
·43 lines (42 loc) · 972 Bytes
/
page-home.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
<?php
/**
* Template Name: Home Hero Template with 3 widget areas
*
*
* @package WP-Bootstrap
* @subpackage Default_Theme
* @since WP-Bootstrap 0.5
*
* Last Revised: July 16, 2012
*/
get_header(); ?>
<div class="jumbotron masthead">
<div class="container">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><?php the_title();?></h1>
<?php the_content();?>
</div>
</div>
<?php endwhile; endif; ?>
<div class="container">
<div class="marketing">
<div class="row-fluid">
<div class="span4">
<?php
if ( function_exists( 'dynamic_sidebar' ) ) dynamic_sidebar( "home-left" );
?>
</div>
<div class="span4">
<?php
if ( function_exists( 'dynamic_sidebar' ) ) dynamic_sidebar( "home-middle" );
?>
</div>
<div class="span4">
<?php
if ( function_exists( 'dynamic_sidebar' ) ) dynamic_sidebar( "home-right" );
?>
</div>
</div>
</div><!-- /.marketing -->
</div>
<?php get_footer();?>