<?php get_header(); ?>


<section class="single-post">
  <div class="container">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
      <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <div class="section_wrapper">
          <div class="common_list_container">
            <h2 class="post-title"><?php the_title(); ?></h2>
            <div class="post-meta">
              <?php $categories = get_the_category(); ?>
              <span class="post-date">
                <?php the_date(); ?>
              </span>
              <span class="categories">
              <?php foreach ($categories as $category) : ?>
                <a class="<?php echo $category->slug; ?>" href="<?php echo esc_url(get_category_link($category->term_id)); ?>" rel="category tag"><?php echo $category->name; ?></a>
              <?php endforeach; ?>
            </span>
            </div>

            <div class="post-content">
              <?php the_content(); ?>
            </div>
          </div>
        </div>
      </article>
    <?php endwhile; else : ?>
      <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
  </div>
  </div>
    <div class="btn_container">
      <a class="btn_primary" href="<?php echo get_permalink(get_page_by_path('top/summary')); ?>">一覧を見る</a>
    </div>
</section>


<?php get_footer(); ?>