
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php get_header(); ?>

<?php
$post_layout = presso_get_post_layout();

if ( 'large-title' == $post_layout ) {
	get_template_part( 'single_large_title' );

} elseif ( 'large-featured-image' == $post_layout ) {
	get_template_part( 'single_large_featured_image' );

} elseif ( 'large-featured-image-2' == $post_layout ) {
	get_template_part( 'single_large_featured_image_2' );

} else {
	get_template_part( 'single_classic' );
	
}
?>

<?php get_footer(); ?>