File: /home/storage/162/3480162/user/htdocs/wp-content/themes/envo-magazine/content-page.php
<!-- start content container -->
<div class="row">
<article class="col-md-<?php envo_magazine_main_content_width_columns(); ?>">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<?php envo_magazine_thumb_img( 'envo-magazine-single', '', false, true ); ?>
<div class="main-content-page">
<header>
<?php the_title( '<h1 class="single-title">', '</h1>' ); ?>
<time class="posted-on published" datetime="<?php the_time( 'Y-m-d' ); ?>"></time>
</header>
<div class="entry-content">
<?php do_action( 'envo_magazine_before_content' ); ?>
<?php the_content(); ?>
<?php do_action( 'envo_magazine_after_content' ); ?>
</div>
<?php wp_link_pages(); ?>
<?php comments_template(); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</article>
<?php get_sidebar( 'right' ); ?>
</div>
<!-- end content container -->