<?php if ( have_posts() ) : $ir = 0; while ( have_posts() ) : the_post();
if ( $ir == 0 || $ir == 1 ) {
get_template_part( 'template-parts/article-wide' );
} else {
get_template_part( 'template-parts/article' );
}
$ir++; endwhile; endif; ?>