You need to get knowing WP_Query and The Loop.
This is a simple loop, sorting Post by category:
<?php
$recent = new WP_Query("cat=5&showposts=8");
while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" title="Permalink on <?php the_title_attribute(); ?>">
<?php echo $post->post_title;?>
<?php endwhile; wp_reset_postdata(); ?>
where cat=5, is category id, and showposts=8 is number of posts. Instead of cat id you can use Category_name=blog.
Not sure how your images are set.