Right. So I'm building a website where a collection entry can have a image gallery.
Some entries will have many images, some will only have a couple.
What I'd like to do, is have my template file count the amount of images the gallery contains and put them in a respective number of (Bootstrap) columns.
For example:
{{ gallery }}
{{ if count <= 3 }}
<div class="col-md-4">
<img src="{{ value }}">
</div>
{{ elseif count > 3 }}
<div class="col-md-6">
<img src="{{ value }}">
</div>
{{ /if }}
{{ /gallery }}
This doesn't work. It doesn't follow the count and so it doesn't switch. I'm pretty sure I'm missing something, I just don't know what. Index? Scope? And how should I use it?
Thanks!