Is there a break/continue for loops in the Twig template engine?
most likely not, you'll have to use a twisted workaround
{% set count=0%}
{% for Metro in Metros %}
{% set count=count+1%}
{% if count<6 %}
{% endif%}
{% endfor %}
or use the loop variable
Comments