XylotrechusZ
<?php
/**
* The template for displaying all single posts and attachments
*/
get_header();
while( have_posts() ){ the_post();
$blog_style = logisco_get_option('general', 'blog-style', 'style-1');
get_template_part('content/single', $blog_style);
} // while
get_footer();
?>