I have found some code to display all posts in a page but it's not exactly what I need.
What I need to do is for example:
<h1>This is the Title</h1>
<p>This is the content of the posts. It displays part of the content only.
User need to click the More! link below to view the whole post.</p>
<a href="...">More!</a>
This code I found only displays the date and the title as a link.
Here is the code:
<?php
$debut = 0; //The first article to be displayed
?>
<?php while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<ul>
<?php
$myposts = get_posts('numberposts=-1&offset=$debut');
foreach($myposts as $post) :
?>
<li><?php the_time('d/m/y') ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<?php endwhile; ?>