';
endif;
else :
// Singular
echo '
';
endif;
/* Start the Loop */
while ( have_posts() ) : the_post();
if( is_archive() || is_search() || brazilcolors_is_blog() ) :
// Archive
if( is_search() ) :
get_template_part( 'template-parts/content', 'search' );
elseif( $alternative_layout_content != 'blog' ) :
get_template_part( 'template-parts/content', $alternative_layout_content );
else :
get_template_part( 'template-parts/content', get_post_format() );
endif;
else :
// Singular
get_template_part( 'template-parts/content', get_post_format() );
endif;
endwhile;
echo '
';
if( is_archive() || brazilcolors_is_blog() ) :
// Archive
$navigation_args = array(
'mid_size' => 2,
'prev_text' => '',
'next_text' => '',
);
the_posts_pagination( $navigation_args );
endif;
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>