How to have more post in a page than in your home page

Something along the lines of

<?php
    if(have_posts()) {
        while(have_posts()) {
            the_post(); the_excerpt();
        }
    }
?>

And of course, read the documentation for further info: