<?php get_header(); ?>
<div id="wrap">
<div id="blog_post">
	
		<?php if (have_posts()) : ?>

		<?php while (have_posts()) : the_post(); ?>
	
	<div class="post" id="post-<?php the_ID(); ?>">
				<h1 class="the_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
    		<h2 class="top_info"> Posted on <?php the_time('F jS, Y') ?> in <?php the_category(', ') ?> </h2>
    
     		<div class="entry">
					<?php the_content('Read the rest of this entry &raquo;'); ?>
				</div>

				<h2 class="bottom_info"><?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_number('No Comments', 'One Comment', '% Comments' );?> to &#8220;<?php the_title(); ?>&#8221;</h2>
		</div> <!-- closes post -->
		<?php endwhile; ?>
		<?php endif; ?>
		<?php comments_template(); ?>
</div> <!-- closes blog_post -->


<?php get_sidebar(); ?>

</div> <!-- closes wrap -->



<?php get_footer(); ?>

