2014-09-30 12:13:06 +03:00
|
|
|
<?php get_header(); ?>
|
2014-10-04 15:33:29 +03:00
|
|
|
<section id="content" role="main" class="content">
|
2014-10-04 17:31:15 +03:00
|
|
|
<?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' ); ?>
|
2014-09-30 12:13:06 +03:00
|
|
|
</section>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|