1KA_F2F/frontend/drupal9/web/modules/contrib/ctools/templates/ctools-wizard-trail.html.twig
2021-07-27 14:46:32 +02:00

15 lines
350 B
Twig

{% if trail %}
<div class="wizard-trail">
{% for key, value in trail %}
{% if key is same as(step) %}
<strong>{{ value }}</strong>
{% else %}
{{ value }}
{% endif %}
{% if value is not same as(trail|last) %}
{{ divider }}
{% endif %}
{% endfor %}
</div>
{% endif %}