initfest/index.php

13 lines
428 B
PHP
Raw Permalink Normal View History

2014-09-30 12:13:06 +03:00
<?php get_header(); ?>
2014-10-07 14:52:34 +03:00
<section id="content" role="main" class="content grid">
<div class="col-left">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'entry' ); ?>
<?php comments_template(); ?>
<?php endwhile; endif; ?>
<?php get_template_part( 'nav', 'below' ); ?>
</div>
<?php get_sidebar(); ?>
2014-09-30 12:13:06 +03:00
</section>
<?php get_footer(); ?>