<?php
/*
Template Name: カテゴリ一覧用（杜の家）
*/
?>

<?php get_header("morino_ie");?>

	<div id="contents">
		<article id="main" class="news">
			<section class="news_info page clearfix">
				<h2><img src="/img/top_page/top_news_ttl.jpg" alt="お知らせ" width="806" height="62"></h2>
				<ul class="news_info_ul">
					<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
						<li class="postList">
							<?php if (has_post_thumbnail()) { ?>
								<div class="postList_img">
									<a class="postList_thumbnail" href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url( 'medium' ); ?>" width="60" height="50"></a>
								</div>
								<div class="postList_main">
									<dl>
										<dt class="postList_time"><?php the_time('Y年n月j日'); ?></dt>
										<dd><h3 class="news_ttl"><?php the_title(); ?></h3><p class="postList_content"><a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></p></dd>
									</dl>
									</div>
							<?php  } else { ?>
								<div class="postList_main_noimg">
									<dl>
									<dt class="postList_time"><?php the_time('Y年n月j日'); ?></dt>
									<dd><h3 class="news_ttl"><?php the_title(); ?></h3><?php
										$days=7;
										$today=date('U'); $entry=get_the_time('U');
										$diff1=date('U',($today - $entry))/86400;
										if ($days > $diff1) { ?>
									<?php } ?>
									<p class="postList_content"><a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></p></dd></dl>
								</div>
							<?php } ?>
						</li>
					<?php endwhile; endif; ?>
				</ul>
				<?php twentyfourteen_paging_nav(); ?>
				
			</section>
						
			<p id="pageTop"><a data-scroll href="#header"><br>page top</a></p>
		<!-- /main --></article>
	<!-- /contents --></div>

<?php get_footer("morino_ie"); ?>


