Ok I finally found the answer so I post here :
<?php query_posts(array( 'post_type' => 'page', 'post_parent' => '2', 'orderby' => 'menu_order', 'order' => 'ASC' )); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien permanent vers <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content('Lire la suite »'); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Introuvable</h2>
<p class="center">Désolé, mais vous cherchez quelque chose qui ne se trouve pas ici.</p>
<?php get_search_form(); ?>
<?php endif; ?>