current_post == 0 ) {
get_template_part( 'template-parts/content', 'grid-wide' );
} else {
if ( $wp_query->current_post == 1 ) {
echo '
';
}
get_template_part( 'template-parts/content', 'grid-small' );
if ( fmod( $wp_query->current_post, 2 ) == 0 && $wp_query->current_post != (int) $wp_query->post_count ) {
echo '
';
} elseif ( $wp_query->current_post == (int) $wp_query->post_count ) {
continue;
}
}
endwhile;
?>