I currently need to write some Velocity code, which is new for me. But now, I got a strange error. Instead of letting me my current #foreach loop, a #break statement is displayed as if it was content. Here my code:
<div id="posterWall2" class="bloc_home" style="float:left; width:758px; height:368px; margin:20px 0px 0px 0px;">
<p class="titre">Salons Professionels</p>
<ul class="list_salonspros">
#if($postersSmall&&$postersSmall.size()>0)
#foreach($content in $postersSmall)
#if ($velocityCount > 4)
##this break is not working!
#{break}
#end
<li>
<a href="$content.manifURL"><div style="width:172px; height:240px;"><img style="max-width:100%; max-height:100%;" src="$content.afficheURL"></div>
</a>
</li>
#end
#end
</ul>
<a class="btnspectacles" href="#">Spectacles</a>
</div>