';
get_template_part( '/template-parts/sidebars/sidebar', 'default-a' );
echo '';
echo '
';
get_template_part( '/template-parts/partials', 'author-bio' );
get_template_part( '/template-parts/partials', 'general-posts' );
get_template_part( '/template-parts/partials', 'page-navi' );
echo '
';
} elseif ( 'both_sidebars' === $layout_option ) {
echo '';
echo '';
get_template_part( '/template-parts/partials', 'author-bio' );
get_template_part( '/template-parts/partials', 'general-posts' );
get_template_part( '/template-parts/partials', 'page-navi' );
echo '
';
echo '';
} elseif ( 'fullwidth' === $layout_option ) {
echo '';
get_template_part( '/template-parts/partials', 'author-bio' );
get_template_part( '/template-parts/partials', 'general-posts' );
get_template_part( '/template-parts/partials', 'page-navi' );
echo '
';
} else {
echo '';
get_template_part( '/template-parts/partials', 'author-bio' );
get_template_part( '/template-parts/partials', 'general-posts' );
get_template_part( '/template-parts/partials', 'page-navi' );
echo '
';
echo '';
}
?>