I would edit the php. Like this:
<?php query_posts('cat=#&posts_per_page=#'); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<h4><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php the_date(); ?>
<?php the_excerpt(); ?>
<a href="<?php echo get_permalink(); ?>">
<?php the_post_thumbnail('large_wide'); ?>
</a>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
Arrange and style accordingly and that should pull out everything you said you needed!