<?php get_header(); ?>
  <div id="content">
  
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  
<div class="post" id="post-<?php the_ID(); ?>">    	
    	<div class="post-header"></div>
        <div class="post-content">
        	<div class="post-date"><span class="post-month"><?php the_time('M') ?></span><span class="post-day"><?php the_time('d') ?></span></div>	  
	  		<div class="post-title">
                <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                <span class="post-cat">Posted in <?php the_category(', ') ?></span>
	  		</div>
            <div class="entry">
            	<?php the_content('<span class="moretext">Read more</span>'); ?>
            </div>
            <?php edit_post_link('Edit', '', ''); ?>            
            <?php the_tags('<div class="tags"> ', ', ', '</div>'); ?>
            <?php comments_template(); ?>
      </div>
      
      <div class="post-bottom"></div>
	</div><!--/post -->
		
			<?php endwhile; else: ?>

		<p>Sorry, no posts matched your criteria.</p>

<?php endif; ?>

  </div><!--/content -->

<?php get_sidebar(); ?>
  
<?php get_footer(); ?>

