File: /var/www/vhosts/greenclinic.kz/newsite/wp-content/themes/green-clinic/blocks/blocks.php
<?php
// Check value exists.
if( have_rows('blocks') ):
$i = 0;
$bi = 1;
if (is_singular('doctor')) {
$i = 1;
}
while ( have_rows('blocks') ) : the_row();
$layout = get_row_layout();
if($layout == 'nums_block' ){
echo '<section id="blocks-'.$bi.'" class="section custom-animation custom-animation-'.$bi.' section__'.get_row_layout().'" >';get_template_part('/blocks/'.get_row_layout(), '', ['index' => $i]);echo '</section>';
}elseif($layout == 'photo_gallery'){
echo '<section id="blocks-'.$bi.'" class="section custom-animation custom-animation-'.$bi.' section__'.get_row_layout().'" >';get_template_part('/blocks/'.get_row_layout(), '', ['index' => $i]);echo '</section>';
}else{
echo '<section id="blocks-'.$bi.'" class="section custom-animation custom-animation-'.$bi.' section__'.get_row_layout().' wow animate__animated animate__slideInUp" data-wow-delay="0.5s">';get_template_part('/blocks/'.get_row_layout(), '', ['index' => $i]);echo '</section>';
}
$i++;
$bi++;
endwhile;
endif;
?>