<?php get_header(); ?>
  <div id="content">
  
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  
    <div class="post" id="post-<?php the_ID(); ?>">
        <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
		<span class="post-cat"><?php the_category(', ') ?></span> <span class="post-calendar"><?php the_time('j F Y') ?></span>
		<div class="post-content">
		<?php the_content('<p class="serif">Lire le reste de cette entr&eacute;e &raquo;</p>'); ?>
		
		<?php link_pages('<p><strong>Pages :</strong> ', '</p>', 'num&eacute;ro'); ?>
		
		<?php edit_post_link('Edit', '', ''); ?>
		
		</div>
		
		<?php comments_template(); ?>
		
			<?php endwhile; else: ?>

		<p>D&eacute;sol&eacute;, aucun posts ne correspondent &agrave; vos crit&egrave;res.</p>

<?php endif; ?>

	</div><!--/post -->

  </div><!--/content -->

<?php get_sidebar(); ?>
  
<?php get_footer(); ?>

