The guys are displayed only the title of the post and the content does not want
<?php get_header(); include 'nav.php'; echo $nav; ?> <link rel="stylesheet" href="/wp-content/themes/bs/style.css"> <div> <br> <div class="backgroundin"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="card"> <div class="card-header"> <?php the_title(); ?> </div> <div class="card-block"> <blockquote class="card-blockquote"> <p><?php get_the_content(); ?></p> </blockquote> </div> </div> <?php endwhile; endif; ?> </div> </div>