Thanks for getting back to me, I am still pretty new with this stuff, here is my code, I’m afraid I don’t know exactly where those tags need to be, any assistance would be awesome!
<?php get_header();?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date">
<?php the_time('d', '', ''); ?>
<div>
<?php the_time('M', '', ''); ?>
</div>
</div>
<div class="title">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
by <?php the_author() ?>
</div>
<div class="clear"></div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
<div class="postmetadata">
<?php the_tags('Tags: ', ', ', '<br />'); ?> <?php the_category(', ') ?>
<?php edit_post_link(' | ', '', 'Edit'); ?>
</div>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous') ?></div>
<div class="alignright"><?php previous_posts_link('Next »') ?></div>
</div>
<?php else : ?>
<h1 class="center">Not Found</h1>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar();?>
<?php get_footer ();?>