Thanks for the quick anwser. I have tried, and I get a strange behavior now: the loop loads forever and I end up having +100 times the first entry repeated, without the content, and nothing else.
Any idea why it could happen? I must have done something wrong…Here is my index.php:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : $postCount = 1; while (have_posts()) : $postCount++; ?>
<div <?php if($postCount == 1) { ?>class="post-first"<?php } else { ?>class="post"<?php } ?> id="post-<?php the_ID(); ?>">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( __('Permalink to %s', 'mytheme'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<span class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php the_time( get_option( 'date_format' ) ); ?></abbr></span>
<span class="meta-sep"> | </span>
<span class="cat-links"><?php echo get_the_category_list(', '); ?></span>
<span class="meta-sep"> | </span>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'mytheme' ), __( '1 Comment', 'mytheme' ), __( '% Comments', 'mytheme' ) ) ?></span>
</div><!-- .entry-meta -->
<div class="entry-content">
<?php if($postCount == 1) { the_post_thumbnail(); } else { the_post_thumbnail('following-post-thumbnails'); } ?>
<?php the_content( __( '<span class="meta-nav">Continue reading »</span>', 'mytheme' ) ); ?>
</div><!-- .entry-content -->
</div><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; endif; ?>
<?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">«</span> Older posts', 'mytheme' )) ?></div>
<div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">»</span>', 'mytheme' )) ?></div>
</div><!– #nav-below –>
<?php } ?>
<div class="clear"></div>
</div><!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>