<?php
$query = new WP_Query( array('post_type' => 'post', 'posts_per_page'=>-1 );
?>
<?php if($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); ?>
<div class="col-sm-12 my-5 bg-primary">
<h1><?php the_title(); ?></h1>
<p><?php the_content(); ?></p>
</div>
<?php endwhile; endif; ?>