Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
/*
Template Name: Home
*/
?>
<?php get_header(); ?>
<!-- =========== Quote ============ -->
<div id="quote" class="span12"> <i class=""> <?php bloginfo( 'description' ); ?> </i> </div>
<!-- =========== Hero ============ -->
<div id="hero" class="row-fluid">
<div class="span12">
<?php if ( is_active_sidebar( 'home1' ) ) { ?>
<?php dynamic_sidebar( 'home1' ); ?>
<?php } else { ?>
<h1>Home1</h1>
<p>Go to Appearance > Widgets, and drag items into Home1 to edit this area.</p>
<?php }; ?>
<hr/>
</div>
</div>
<!-- =========== Three Columns ============ -->
<div id="triad" class="row-fluid">
<div class="span4" id="triad1">
<?php if ( is_active_sidebar( 'home2' ) ) { ?>
<?php dynamic_sidebar( 'home2' ); ?>
<?php } else { ?>
<h1>Home2</h1>
<p>Go to Appearance > Widgets, and drag items into Home2 to edit this area.</p>
<?php }; ?>
</div>
<div class="span4" id="triad2">
<?php if ( is_active_sidebar( 'home3' ) ) { ?>
<?php dynamic_sidebar( 'home3' ); ?>
<?php } else { ?>
<h1>Home2</h1>
<p>Go to Appearance > Widgets, and drag items into Home2 to edit this area.</p>
<?php }; ?>
</div>
<div class="span4" id="triad3">
<?php if ( is_active_sidebar( 'home4' ) ) { ?>
<?php dynamic_sidebar( 'home4' ); ?>
<?php } else { ?>
<h1>Home2</h1>
<p>Go to Appearance > Widgets, and drag items into Home2 to edit this area.</p>
<?php }; ?>
</div>
</div>
<!-- =========== Map ============ -->
<div id="map-hold" class="row-fluid">
<div id="map-hold">
<iframe src="https://mapsengine.google.com/map/embed?mid=z9lk5S8qPZns.k6cHf2kSnHsY&hl" width="100%" height="400"></iframe>
</div>
</div>
<?php get_footer(); ?>