Hi
I'm trying to create a model for a photogallery in which every item has a unique id, but seems that the velocity engine is lacking sometings.
My code should be like this
<ul>
#foreach ($image in $content.ImageZoom)
<li><img src="$image.getImagePath("0")" id="item_$foreach.count" /></li>
#end
</ul>
The velocity code seems correct but it doesn't work.
Any idea?
Thanks