ctools-wizard-trail-links.html.twig 396 B

1234567891011121314
  1. {% if trail %}
  2. <div class="wizard-trail">
  3. {% for key, value in trail %}
  4. {% if key is same as(step) %}
  5. <strong>{{ link(value.title, value.url) }}</strong>
  6. {% else %}
  7. {{ link(value.title, value.url) }}
  8. {% endif %}
  9. {% if value is not same as(trail|last) %}
  10. {{ divider }}
  11. {% endif %}
  12. {% endfor %}
  13. </div>
  14. {% endif %}