ctools-wizard-trail.html.twig in Chaos Tool Suite (ctools) 8.3        
                          
                  
                        
  
  {% 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 %}
 
  
File
  templates/ctools-wizard-trail.html.twig
  
    View source  
  - {% 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 %}