This is what I use:
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<?php if (!$cat){?>
<h3 class="storytitle" id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></h3>
<div class="storycontent">
<?php the_content(); ?>
</div>
Posted: <div class="updated"><?php the_date(); ?></div>
<div class="date"><?php edit_post_link(); ?></div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('No comments yet'), __('Just 1 comment'), __('% Comments')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php include(ABSPATH . 'wp-comments.php'); ?>
<h3><?php single_cat_title(name); ?> </h3>
<?php } else { ?>
<?php } ?>
</div>
<?php endforeach; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
</div>
Somebody very helpful (can’t remember who – sorry) gave me the code in a previous thread.
You’ll need to chnage the code a bit to suit the layout but it should work.
You can see it in action on my site, which is visible via my username.
hth
Phillip