11 lines
325 B
PHP
11 lines
325 B
PHP
|
<?php get_header(); ?>
|
||
|
<section id="content" role="main">
|
||
|
<?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' ); ?>
|
||
|
</section>
|
||
|
<?php get_sidebar(); ?>
|
||
|
<?php get_footer(); ?>
|