<?php
$lastposts = get_posts('numberposts=10');
    foreach($lastposts as $post) :
        setup_postdata($post);
        ?>
        <li><a href="<?php the_permalink(); ?>">
        	<?php the_title(); ?></a></li>
        <?php
        global $more;
        $more = 0;
 
        the_content(''); ?>
<?php
    endforeach;
?>