Permalink
Cannot retrieve contributors at this time
neag/page-home.php
Go to file<?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"> | |
<?php get_template_part( 'content', 'blank' ); ?> | |
<?php | |
// If comments are open or we have at least one comment, load up the comment template | |
if ( comments_open() || '0' != get_comments_number() ) : | |
comments_template(); | |
endif; | |
?> | |
</div> | |
</div> | |
<?php endwhile; // end of the loop. ?> | |
</div> | |
<?php get_footer(); ?> |