<? get_header(); ?>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
echo '<div class="caption">';
wp_title('');
echo '</div>';
the_post();
echo get_the_content('Read more');
}
}
?>
<? get_footer(); ?>