';
get_template_part( 'template-parts/post/content', 'single' );
echo '
';
break;
case "left":
// left single
echo '';
get_template_part( 'template-parts/post/content', 'single' );
echo '
';
break;
default:
// right single
echo '';
get_template_part( 'template-parts/post/content', 'single' );
echo '
';
}
?>