File "blog-large-image-grid.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/themes/shapely/template-parts/layouts/blog-large-image-grid.php
File size: 865 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/* Start the Loop */
global $wp_query;
while ( have_posts() ) :
the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
if ( 0 == $wp_query->current_post ) {
get_template_part( 'template-parts/content', 'grid-wide' );
} else {
if ( 1 == fmod( $wp_query->current_post, 2 ) ) {
echo '<div class="row">';
}
get_template_part( 'template-parts/content', 'grid-small' );
if ( 0 == fmod( $wp_query->current_post, 2 ) && $wp_query->current_post != (int) $wp_query->post_count ) {
echo '</div>';
} elseif ( ( $wp_query->current_post + 1 ) == (int) $wp_query->post_count ) {
echo '</div>';
}
}
endwhile;
?>
<?php