<!--slots-->
<div class="slots-container">
<div class="row">
<?php
$wp_query = new WP_Query($args);
if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); $post_ID = get_the_ID(); ?>
<div class="col-lg-3 col-md-4 col-sm-6">
<?php get_template_part('assets/templates/archive-slots-item'); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<!--end slots-->