iterable.twig 266 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 {% if item is iterable %} <ol> {% for key, value in item %} <li>{{ key }}: {% include 'iterable.twig' with {'item': value, 'child': true} %}</li> {% endfor %} </ol> {% elseif child %} <span class="child">{{ item }}</span> {% else %} {{ item }} {% endif %}