Skip to content

Instantly share code, notes, and snippets.

@shadcn
Created May 11, 2016 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shadcn/4c79632956564f1d2ef321ad6aa83941 to your computer and use it in GitHub Desktop.
Save shadcn/4c79632956564f1d2ef321ad6aa83941 to your computer and use it in GitHub Desktop.
Drupal Element::children in Twig templates
{% for key, child in element if key|first != '#' %}
<div>{{ child }}</div>
{% endfor %}
@loominade
Copy link

But consider, you can't use {{ loop.last }} here, because the last item can't be determend.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment