initfest/page.php

10 lines
376 B
PHP
Raw Normal View History

2014-09-30 12:44:55 +03:00
<?php get_header(); ?>
<section id="content" role="main">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'entry' ); ?>
2014-09-30 15:13:59 +03:00
<?php //comments_template(); NO COMMENTS IN PAGES PLEASE ?>
2014-09-30 12:44:55 +03:00
<?php endwhile; endif; ?>
2014-09-30 15:13:59 +03:00
<?php //get_template_part( 'nav', 'below' ); ?>
2014-09-30 12:44:55 +03:00
</section>
<?php get_sidebar(); ?>
<?php get_footer(); ?>