File: /www/sites/www.credebtexchange.com/htdocs/wp-content/themes/adgroup-wp-theme/single.php
<?php get_header(); ?>
<?php get_template_part('template-parts/head'); ?>
<?php get_template_part('template-parts/nav','header'); ?>
<div class="container dmbs-content-wrapper blog-content">
<div class="row">
<?php get_template_part( 'template-parts/sidebar', 'left' ); ?>
<?php $dmbsColumnSize = devdmbootstrap_column_size('main'); ?>
<div class="col-md-<?php echo sanitize_html_class( $dmbsColumnSize, '8' ); ?> dmbs-main">
<?php if ( have_posts() ) : ?>
<?php
// Start the loop.
while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('dmbs-post'); ?>>
<div class="">
<h1 class="dmbs-post-title"><?php the_title(); ?></h1>
</div><br>
<?php if ( has_post_thumbnail() ) : ?>
<div class="dmbs-post-featured-image">
<?php the_post_thumbnail('featured', array('class' => 'card-img-top')); ?>
</div>
<?php endif; ?>
<div class="dmbs-post-content">
<?php if ( has_excerpt() ) : ?>
<div class="dmbs-post-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>
<?php
/* translators: %s: Name of current post */
the_content( sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'devdmbootstrap4' ),
get_the_title()
) );
?>
</div>
</article>
<?php
// End the loop.
endwhile;
?>
<?php endif; ?>
</div>
<?php get_template_part( 'template-parts/sidebar', 'right' ); ?>
</div>
</div>
<?php get_template_part('template-parts/nav','footer'); ?>
<?php get_footer(); ?>