<?php
/*
Template Name: testページ用
*/
?>
<?php get_header(); ?>

<div class="page_title">
	<h2><?php the_title(); ?></h2>
</div>

<div id="contents">

	<article id="main">

	<?php
		if(have_posts()):
			while(have_posts()):
				the_post();
				the_content();
			endwhile;
		endif;
	?>
<?php phpinfo(); ?>
		<p id="pageTop"><a data-scroll href="#header"><br>page top</a></p>
	<!-- /main --></article>
<!-- /contents --></div>

<?php get_footer(); ?>
