2014-09-30 12:44:55 +03:00
|
|
|
<?php get_header(); ?>
|
|
|
|
<section id="content" role="main">
|
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(); NO COMMENTS IN PAGES PLEASE ?>
|
|
|
|
<?php endwhile; endif; ?>
|
|
|
|
<?php //get_template_part( 'nav', 'below' ); ?>
|
2014-09-30 12:44:55 +03:00
|
|
|
</section>
|
|
|
|
<?php get_sidebar(); ?>
|
2014-10-04 17:31:15 +03:00
|
|
|
<?php get_footer(); ?>
|