How about something like:
PHP Code:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); $postcount++; ?>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="date"><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></p>
<?php if ($postcount == 1) { ?>
<?php the_content("Continue reading: " . the_title('', ' »', false)); ?>
<?php } else { ?>
<?php the_excerpt() ?>
<p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read more of <?php the_title(); ?></a></p>
<? } ?>
<p class="postmetadata">Posted in: <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit',' | ',' '); ?></p>
<!--
<?php trackback_rdf(); ?>
-->
<?php endwhile; ?>
This replaces the loop in index.php. Seems to work, if I understood what you wanted.
Bookmarks