single.php 531 B

1234567891011121314151617181920212223
  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
  9. // If comments are open or we have at least one comment, load up the comment template
  10. if ( comments_open() || '0' != get_comments_number() )
  11. comments_template( '', true );
  12. ?>
  13. <?php endwhile; // end of the loop. ?>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <?php get_footer(); ?>