Skip to content

Instantly share code, notes, and snippets.

@alexmazaltov
Created October 2, 2020 13:36
Show Gist options
  • Save alexmazaltov/1726d626ce6030c07411a215a9cd9c4c to your computer and use it in GitHub Desktop.
Save alexmazaltov/1726d626ce6030c07411a215a9cd9c4c to your computer and use it in GitHub Desktop.
Using loop.last in twig template with loop
{% for type in types %}
<span itemprop="employmentType" content="{{ type.key }}">{{ type.text }}</span>
{% if not loop.last %}<br />{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment