ACF Resources (Repeater Field)
<?php while( have_rows('resources') ): the_row(); ?>
<?php
$type = get_sub_field_object('type');
$value = $type['value'];
$label = $type['choices'][$value];
?>
<article class="resource <?php echo $value; ?>">
<a href="<?php the_sub_field('link'); ?>" target="_blank">
<?php if( get_sub_field('title') ): ?>
<p>
<?php the_sub_field('title'); ?>
</p>
<?php endif; ?>
<div class="icon">
<span></span>
<?php echo $label; ?>
</div>
</a>
</article>
<?php endwhile; ?>