This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
unesco/page-home.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (54 sloc)
1.72 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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(); ?> |