File: /var/www/compelsupport/wp-content/themes/compel/single.php
<?php get_header(); ?>
<div class="container-fluid">
<!-- Page-Title -->
<div class="row">
<div class="col-sm-12">
<div class="page-title-box">
<div class="float-right">
</div>
</div>
<!--end page-title-box-->
</div>
<!--end col-->
</div>
<div class="row">
<div class="col-sm-12">
<div class="card">
<div class="card-body">
<div style="padding-bottom:35px;" class="content-wrapper">
<?php
if( have_posts() ) :
while( have_posts() ) : the_post(); ?>
<a class="styled-link" href="<?= get_home_url(); ?>">< Back to menu</a>
<h1 class="page-title"><?= the_title(); ?></h1>
<?php if(has_post_thumbnail()) : ?>
<img class="post-single-image " src="<?= get_the_post_thumbnail_url( get_the_ID(), 'post_image' ) ?>" />
<?php endif; ?>
<div class="content-body">
<?= the_content(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
<!--end page-title-box-->
</div>
<!--end col-->
</div>
<!-- end page title end breadcrumb -->
</div>
<?php get_footer(); ?>