templates/backend/partials/_breadcrumb.html.twig line 1

Open in your IDE?
  1. <div class="row mb-3">
  2.     <div class="col-12 col-lg-6 text-center text-lg-start">
  3.         <nav
  4.                 style="--bs-breadcrumb-divider: url(&#34;data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E&#34;);"
  5.                 aria-label="breadcrumb"
  6.                 {{ buttons is not defined or buttons|length == 0 ? 'class="mb-3"' }}
  7.         >
  8.             <ol class="breadcrumb">
  9.                 {% for data in datas %}
  10.                     <li class="breadcrumb-item">
  11.                         {% if data.url is defined and data.url is not null %}
  12.                             <a href="{{ data.url }}">
  13.                         {% endif %}
  14.                         {{ data.label|raw }}
  15.                         {% if data.url is defined and data.url is not null %}
  16.                             </a>
  17.                         {% endif %}
  18.                     </li>
  19.                 {% endfor %}
  20.             </ol>
  21.         </nav>
  22.     </div>
  23.     <div class="col-12 col-lg-6 text-center text-lg-end align-middle">
  24.         {% block other_button_before %}{% endblock %}
  25.         {% if buttons is defined and buttons|length > 0 %}
  26.             {% for button in buttons %}
  27.                 {% if button.display %}
  28.                     <a
  29.                             href="{{ button.url is defined ? button.url : '#' }}"
  30.                             class="{{ button.class }}"
  31.                             {{ button.attr is defined ? button.attr|join(' ')|raw }}
  32.                     >
  33.                         {% if button.icon is defined and button.icon is not empty %}
  34.                             <i class="{{ button.icon }}"></i>
  35.                         {% endif %}
  36.                         {{ button.label }}
  37.                     </a>
  38.                 {% endif %}
  39.             {% endfor %}
  40.         {% endif %}
  41.         {% block other_button_after %}{% endblock %}
  42.     </div>
  43. </div>