<?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_popup_link('No Comments &raquo;', '1 Comment &raquo;', '% Comments &raquo;'); ?></h2>
	</div> <!-- closes post -->
	<?php endwhile; ?>
	<?php endif; ?>
</div> <!-- closes blog_post -->


<?php get_sidebar(); ?>

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

<?php get_footer(); ?>

