<?php
/*
Template Name: ブログ一覧用
*/
?>
<?php get_header(); ?>

	<div id="contents" class="clearfix">
		<?php get_sidebar(); ?>

		<article id="main">
			<div class="breadcrumbs">
				<?php if(function_exists('bcn_display')){
					bcn_display();
				}?>
			</div>

			<section class="sectionLv01 clearfix">
    	    	<div class="about-box">
	                <h3 class="h3box"><?php single_cat_title(); ?></h3>
				
					<dl class="dl-archives">
						<?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; endif; ?>
					</dl>
				</div><!-- /about-box -->
			<!-- /sectionLv01 --></section>
		<!-- /main --></article>
		
	<!-- /contents --></div>

<?php get_footer(); ?>




