This is the code (I am not sure where to put it and how it would look better.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="comm_date"><span class="data"><span class="j"><?php the_time('j'); ?></span><br /><span class="my"><?php the_time('M/y'); ?></span></span><span class="nr_comm"><?php if($dsq_version){ echo '<a class="nr_comm_spot" href="'; echo the_permalink(); echo '">N/A</a>'; }else{ ?><a class="nr_comm_spot" href="<?php the_permalink(); ?>#respond"><?php echo comments_number('0', '1', '%' ); ?></a><?php } ?></span></div><div class="clear"></div>
<?php the_content(''); ?>
<div class="cat_tags"><div class="category"><?php $tag = get_the_tags(); if (!$tag) { ?><?php _e('Filed under:','lightword'); ?> <?php the_category(', '); } else { ?><?php _e('Tagged as:','lightword'); ?> <?php the_tags(''); } ?></div>
<div class="continue"><?php $pos=strpos($post->post_content, '<!--more-->'); if($pos==''){ ?><a class="nr_comm_spot" href="<?php the_permalink(); ?>#respond"><?php comments_number(__('No Comments','lightword'), __('1 Comment','lightword'), __('% Comments','lightword')); ?></a><?php }else{ ?><a title="<?php _e('Read more about','lightword'); ?> <?php the_title(); ?>" href="<?php the_permalink() ?>#more-<?php echo $id; ?>"><?php _e('Continue reading','lightword'); ?></a><?php } ?></div><div class="clear"></div></div><div class="cat_tags_close"></div>
Thanks for your help.
Gadi