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?
ece/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.
18 lines (17 sloc)
499 Bytes
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 | |
* This page template has no padding, and does not display the page title. | |
* Useful for large images, iframes, or other edge cases. | |
*/ | |
get_header(); ?> | |
<div id="page-home"> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<div class="row"> | |
<div class="col-sm-<?php echo (is_active_sidebar( $sidebar )?9:12); ?>"> | |
<?php get_template_part( 'content', 'blank' ); ?> | |
</div> | |
</div> | |
<?php endwhile; // end of the loop. ?> | |
</div> | |
<?php get_footer(); ?> |