1 ? 'cols' : 'def_classic';
$blog_layout = zget_option( 'blog_layout', 'blog_options', false, $blog_layout );
if ( $blog_layout == 'cols' ) {
get_template_part( 'blog', 'columns' );
}
elseif ( $blog_layout == 'def_classic' || $blog_layout == 'def_modern' ) {
get_template_part( 'blog', 'default' );
}
?>