ui2022/crumbs__crumb.html.twig line 1

Open in your IDE?
  1. {% set link = _args.link|default('#') %}
  2. {% set target = _args.target|default(null) %}
  3. {% set text = _args.text %}
  4. {% set active = _args.active|default(false) %}
  5. <li class="breadcrumb-item{% if active %} active{% endif %}"{% if active %} aria-current="page"{% endif %}>
  6.     {% if not active %}<a href="{{- link -}}"{% if target %} target="{{ target }}"{% endif %}>{% endif %}
  7.         {{- text -}}
  8.     {% if not active %}</a>{% endif %}
  9. </li>