<?php get_header() ?>
<?php
the_post(); ?>
<?php $image_id = get_post_thumbnail_id(); ?>
<?php $image_attributes = wp_get_attachment_image_src( $image_id, 'full'); ?>
<img src="<?php echo $image_attributes[0]; ?>" width="100%" height="512px">
<?php
the_title('<h1 class="post-title">', '</h1>');
echo '<div class="post-content">';
the_content();
echo '</div>';
?>
<?php get_footer() ?>