12345678910111213141516171819202122 |
- <?php
- /**
- * The template for displaying all single posts.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
- *
- * @package Sakurairo
- */
- get_header(); ?>
- <div id="primary" class="content-area">
- <main id="main" class="site-main" role="main">
- <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'tpl/content', 'single' ); ?>
- <?php get_template_part('layouts/sidebox'); ?>
- <?php get_template_part('layouts/post', 'nextprev'); ?>
- <?php endwhile; endif; ?>
- </main><!-- #main -->
- </div><!-- #primary -->
- <?php
- get_footer();
- ?>
|