<div>
<?php
if(have_posts()){
$i = 0;
while(have_posts()){
the_post();
?>
<div class="post">
<div class="heading"><h2><a href="<?php the_permalink (); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2></div>
<?php
if ($i < 5){
?>
<div class="entry"><?php the_content();?></div>
<?php
}
$i++;
?>
</div>
<?php
}
}
?>
</div>