single.php 595 B

12345678910111213141516171819202122232425
  1. <?php get_header(); ?>
  2. <div id="press-wrap">
  3. <div class="container">
  4. <div class="page-container">
  5. <div class="row journal">
  6. <div class="twelvecol">
  7. <?php while ( have_posts() ) : the_post(); ?>
  8. <?php get_template_part( 'content', 'single' ); ?>
  9. <?php
  10. // If comments are open or we have at least one comment, load up the comment template
  11. if ( comments_open() || '0' != get_comments_number() )
  12. comments_template( '', true );
  13. ?>
  14. <?php endwhile; // end of the loop. ?>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. <?php get_footer(); ?>