﻿			<section class="sectionLv01 clearfix">
    	    	<div class="about-box">
	                <h3 class="h3box"><?php single_cat_title(); ?></h3>
				
					<dl class="dl-archives clearfix">
						<?php
							if ( have_posts() ) : 
								while ( have_posts() ) :
									the_post();
						?>
						<dt><?php the_time('Y年n月j日'); ?></dt>
						<dd><a href="<?php the_permalink(); ?>"><?php the_title();?></a>
							<?php
								$days=7;
								$today=date('U'); $entry=get_the_time('U');
								$diff1=date('U',($today - $entry))/86400;
								if ($days > $diff1) {
							?>
								<img src="<?php bloginfo('stylesheet_directory'); ?>/img/common/new.gif" width="18" height="8" alt="new">
							<?php } ?>
						</dd>
						<?php
								endwhile;
							elseif ( !have_posts() ):
								echo("現在１件もありません。");
							endif;
						?>
					</dl>
				<?php twentyfourteen_paging_nav(); ?>
