Use the
Headway theme and some code like below.
PHP Code:
<?php query_posts('showposts=999&random=true');?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div>
<h1><?php the_title(); ?></h1>
<p><?php postimage('thumbnail'); ?></p>
</div>
<?php endwhile; else: ?><p>Oops, no posts!</p><?php endif; ?>
You'd have to tweak the code to get exactly what you want. The code above grabs a random post and displays the title and post thumbnail.