Skip to main content

continue

Causes a for loop to skip to the next iteration.

Syntax

{% continue %}
{% for i in (1..5) -%}
{%- if i == 4 -%}
{% continue %}
{%- else -%}
{{ i }}
{%- endif -%}
{%- endfor %}

Output

1
2
3
5
Was this page helpful?