Hello all-
I have a ContentSelect query that returns data by year. I am able to use a $CMS_FOR loop to get almost everything I need; each dataset's headline, date and the first image from a FS_LIST are successfully rendered like:
$CMS_FOR(entry, fr_reports)$
<div>
<img src="$CMS_VALUE(entry.image_gallery[0])$"/>
<h4>$CMS_VALUE(entry.headline)$</h4>
<h5>$CMS_VALUE(entry.date)$</h5>
</div>
$CMS_END_FOR$
My issue is applying an image resolution to the image (what's returned above is the raw, full sized image). Usually, for my basic templates I'd have something like $CMS_REF( st_image, res: "width800" )$. I'm unsure on how to do the same inside my loop.