';
get_template_part( 'template-parts/page-headers' );
get_template_part( 'template-parts/post/content', get_post_format() );
get_template_part( 'template-parts/navigation/nav', 'blog' );
echo '
';
break;
case "classic-left":
// classic left blog
echo '';
get_template_part( 'template-parts/page-headers' );
get_template_part( 'template-parts/post/content', get_post_format() );
get_template_part( 'template-parts/navigation/nav', 'blog' );
echo '
';
break;
default:
// classic blog
echo '';
get_template_part( 'template-parts/page-headers' );
get_template_part( 'template-parts/post/content', get_post_format() );
get_template_part( 'template-parts/navigation/nav', 'blog' );
echo '
';
}
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>