This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/ctools/templates/ctools-wizard-trail-links.html.twig
2017-05-22 15:12:47 +01:00

15 lines
396 B
Twig

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