<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<br>
<br>
<br>
<br>
<article class="row">
<div class="col-md-5"><?php the_post_thumbnail(); ?></div>
<div class="col-md-7">
<h2><?php the_title(); ?></h2>
<p style="margin-top: 15px;"><?php the_content(); ?></p>
</div>
</article>
<?php endwhile; ?>
<?php endif; ?>