';
// customize the archive titles if set to true
if ( esc_attr(get_theme_mod( 'camer_show_archive_labels', true ) ) ) :
camer_archive_title( '
';
get_template_part( 'template-parts/sidebars/sidebar', 'content-top' );
$camer_blog_layout = get_theme_mod( 'camer_blog_layout', 'default' );
switch ( esc_attr($camer_blog_layout ) ) {
case "photowall":
// photowall
echo '
';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content', get_post_format() );
endwhile;
echo '
';
break;
case "default-left":
// default left sidebar
echo '
';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content', get_post_format() );
endwhile;
echo '';
get_sidebar();
echo '
';
break;
default:
// default blog
echo '
';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content', get_post_format() );
endwhile;
echo '';
get_sidebar();
echo '
';
}
camer_blog_navigation();
get_template_part( 'template-parts/sidebars/sidebar', 'bottom' );
echo '
';
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>