If you want a global recent posts list you need to create a loop
that would show them if you want to show them in your home.php
you can use this code where you want.. (no inside the loop)
// The Query
$args = array(
'posts_per_page' => 10,
'orderby' => 'date',
'order' => 'ASC'
)
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo '<li>';
the_title().'<br />';
the_excerpt().'<br />';
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
.
i have left the amount of posts shown there so you can control it...
Additional arguments you can use to refine the loop can be found at
WP Query in the wordpress codex...
Hope this Helps ;)
Sagive.
.
(p.s: 0% accept rate which is what you have is not ok.. you should go back to the question you asked and either answer them yourself or pick the correct answer if exist and approve it... It best for the community)