/home/arranoyd/eventrify/wp-content/themes/uptime/loop/loop-client-small-no-margin.php
<ul class="d-flex flex-wrap justify-content-center list-unstyled">
	<?php 
		$i = 1;
		if ( have_posts() ) : while ( have_posts() ) : the_post();
		?>
			
			<li class="mx-3" data-aos="fade-up" data-aos-delay="<?php echo esc_attr( $i ); ?>00">
				<?php the_post_thumbnail( 'large', array( 'class' => 'icon icon-md opacity-20' ) ); ?>
			</li>
			
		<?php
		$i++;
		endwhile;	
		else : 
			
			get_template_part( 'loop/content', 'none' );
			
		endif;
	?>
</ul>