<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package WordPress
 * @subpackage Twenty_Seventeen
 * @since 1.0
 * @version 1.0
 */

get_header(); ?>

<section class="about_topics clearfix">
	<h3><img src="/img/topics/topics_ttl.png" alt="トピックス" width="295" height="90"></h3>
	<div class="box">

				<h2><span class="nichiji"><?php the_time('n月j日'); ?></span><?php the_title();?></h2>
				<?php
					if(have_posts()):
						while(have_posts()):
							the_post();
							the_content();
						endwhile;
					endif;
				?>
				<p id="pageTop"><a data-scroll href="#top"><br>PAGE TOP</a></p>
	</div>
</sction>
<?php get_footer(); ?>
