<?php
/*
Template Name: 通常の固定ページ
*/
?>
<?php get_header(''); ?>
<div class="main second">
<div class="widthWide">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>