<?php get_header(); ?><!-- ヘッダー部分(上部分)呼び出し -->
<!-- パンくずリスト -->
<div id="breadcrumb">
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="<?php echo home_url(); ?>" itemprop="url">
<span itemprop="title">トップ</span>
</a> › </div>
<?php if(is_month()): ?>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="<?php echo get_year_link(get_the_date('Y')); ?>" itemprop="url">
<span itemprop="title"><?php echo get_the_date('Y'); ?>年</span>
</a> › </div>
<div><?php echo get_the_date('n'); ?>月</div>
<?php endif; ?>
<?php if(is_year()): ?>
<div><?php echo get_the_date('Y'); ?>年</div>
<?php endif; ?>
</div>
<!-- パンくずリスト終了 -->
<div id="body2">
<div id="content"><!-- 記事コンテンツ(中央部分) -->
<p class="title">
<?php single_month_title(); ?>
<?php if(is_year()): ?><?php echo get_the_date('Y'); ?><?php endif; ?>
</p>
<div id="ue_page"><?php get_template_part('pagenation'); ?></div>
<?php if(have_posts()): while(have_posts()):
the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; endif; ?>
<?php get_template_part('pagenation'); ?>
</div>
<?php get_sidebar('2'); ?><!-- 左サイドバー -->
</div>
<?php get_sidebar(); ?><!-- 右サイドバー -->
<?php get_footer(); ?><!-- フッター部分(下部分)呼び出し -->