<?php get_header(); ?>

<div id="content">
新着情報
<div id="contentleft">

	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

	<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
	<h1><?php the_title(); ?></h1>
	<div class="entry-content"><?php the_content(__('続きを読む'));?></div>
			
	<!--
	<?php trackback_rdf(); ?>
	-->
	
		<div class="postmeta">
			<div class="postmetaleft">
				<p><?php the_time('Y年n月d日'); ?> &middot; カテゴリー <?php the_category(', ') ?></p>
			</div>
			<div class="postmetaright">
				<?php edit_post_link('(編集)', '', ''); ?>
			</div>
		</div>
		
		<div style="clear:both;"></div>
	<h3>コメント</h3><?php comments_template(); // wp-comments.php取得 ?>
	</div>
	
	<?php endwhile; else: ?>
	
	<p><?php _e('お探しのページは見つかりませんでした。'); ?></p><?php endif; ?>	

	</div>
	
	<?php include(TEMPLATEPATH."/sidebar.php");?>

</div>

<!-- メインカラム 終了 -->

<?php get_footer(); ?>