File: //var/www/bak/wintergenomics_site/wp-content/themes/radcliffe/page.php
<?php get_header(); ?>
<div class="content">
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<div <?php post_class( 'post single' ); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class="featured-media" style="background-image: url( <?php the_post_thumbnail_url( $post->ID, 'post-image' ); ?> );">
<?php
the_post_thumbnail( 'post-image' );
$image_caption = get_post( get_post_thumbnail_id() )->post_excerpt;
if ( $image_caption ) :
?>
<div class="media-caption-container">
<p class="media-caption"><?php echo $image_caption; ?></p>
</div>
<?php endif; ?>
</div><!-- .featured-media -->
<?php endif; ?>
<div class="post-header section">
<div class="post-header-inner section-inner">
<?php the_title( '<h1 class="post-title">', '</h1>' ); ?>
</div><!-- .post-header-inner section-inner -->
</div><!-- .post-header section -->
<div class="post-content section-inner thin">
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages('before=<p class="page-links">' . __( 'Pages:', 'radcliffe' ) . ' &after=</p>&seperator= <span class="sep">/</span> '); ?>
</div>
</div><!-- .post -->
<?php
comments_template( '', true );
endwhile;
endif; ?>
<div class="clear"></div>
</div><!-- .content -->
<?php get_footer(); ?>