single.php 677 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * The Template for displaying all single posts.
  4. *
  5. * @package Libretto
  6. */
  7. get_header(); ?>
  8. <div id="primary" class="content-area">
  9. <div id="content" class="site-content" role="main">
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <?php get_template_part( 'content', 'single' ); ?>
  12. <?php libretto_content_nav( 'nav-below' ); ?>
  13. <?php
  14. // If comments are open or we have at least one comment, load up the comment template
  15. if ( comments_open() || '0' !== get_comments_number() ) {
  16. comments_template(); }
  17. ?>
  18. <?php endwhile; // end of the loop. ?>
  19. </div><!-- #content -->
  20. </div><!-- #primary -->
  21. <?php get_sidebar(); ?>
  22. <?php get_footer(); ?>