';
// Display Featured Post Slideshow if activated
if ( isset($theme_options['slider_activated_blog']) and $theme_options['slider_activated_blog'] == true ) :
get_template_part( 'template-parts/featured-content-slider' );
endif;
if ( $theme_options['pmth_grid_col_opt'] == 'pmth-grid-coln' ) {
$gridopt = $theme_options['pmth_grid_column'];
} else {
$gridopt = $theme_options['pmth_grid_width'];
}
echo '';
if (have_posts()) :
while (have_posts()) : the_post();
get_template_part( 'template-parts/content', $theme_options['posts_length'] );
endwhile;
endif;
echo '
';
pmthemes_display_pagination();
echo '';
get_sidebar();
echo '';
get_footer();
?>