single.php 623 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The template for displaying all single posts.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
  6. *
  7. * @package Sakurairo
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <main id="main" class="site-main" role="main">
  12. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  13. <?php get_template_part( 'tpl/content', 'single' ); ?>
  14. <?php get_template_part('layouts/sidebox'); ?>
  15. <?php get_template_part('layouts/post', 'nextprev'); ?>
  16. <?php endwhile; endif; ?>
  17. </main><!-- #main -->
  18. </div><!-- #primary -->
  19. <?php
  20. get_footer();
  21. ?>