<?php get_header(); ?>
  <div id="content">
  
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
	
    <div class="post" id="post-<?php the_ID(); ?>">
    	<br />
        <h1><?php the_title(); ?></h1>
        <div class="page-content">
			<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>

			<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
        </div>
        <div class="post-header"></div>
        <div class="post-content">
        	<br />
        	<?php comments_template(); ?>
      </div>      
      <div class="post-bottom"></div>
    </div>
	
  <?php endwhile; endif; ?>

  </div><!--/content -->

<?php get_sidebar(); ?>

<?php get_footer(); ?>