Sorry I think I left some out!
<div id=”main”>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<div id=”post-<?php the_ID(); ?>”>
<h2> ” title=”<?php the_title(); ?>”>
<?php the_title(); ?>
</h2>
<div class=”entry”>
<?php the_content(); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
<?php comments_template(); ?>
</div>
</div>