single.php 400 B

1234567891011121314
  1. <?php get_header(); ?>
  2. <div id="press-wrap">
  3. <div class="container">
  4. <div class="row journal">
  5. <div class="twelvecol">
  6. <?php while ( have_posts() ) : the_post(); ?>
  7. <?php get_template_part( 'content', 'single' ); ?>
  8. <?php if ( comments_open() || '0' != get_comments_number() ) comments_template( '', true ); ?>
  9. <?php endwhile; ?>
  10. </div>
  11. </div>
  12. </div>
  13. </div>
  14. <?php get_footer(); ?>