templates/breadcrumbs.html.twig line 1

Open in your IDE?
  1. <!-- ============================================================== -->
  2. <!-- Bread crumb and right sidebar toggle -->
  3. <!-- ============================================================== -->
  4. <div class="row page-titles" style="padding: 13px;">
  5.     <div class="col-md-5 col-8 align-self-center">
  6.         <ol class="breadcrumb">
  7.             {% if breadcrumbs is defined %}
  8.                 {% for br_label, br_url in breadcrumbs %}
  9.                     <li {% if loop.index == breadcrumbs|length %} class="breadcrumb-item active" {% else %} class="breadcrumb-item" {% endif %}>
  10.                         {% if br_url != "" %}
  11.                             <a href="{{ br_url|e }}">
  12.                         {% endif %}
  13.                         {% if br_label == 'Inicio' %}
  14.                             <i class="fa fa-home"></i>
  15.                         {% endif %}
  16.                         {{ br_label }}
  17.                         {% if br_url != "" %}
  18.                             </a>
  19.                         {% endif %}           
  20.                     </li>   
  21.                 {% endfor %}
  22.             {% endif %}
  23.         </ol>
  24.     </div>
  25.     {% if is_granted('ROLE_ADMIN') %}
  26.         <div class="d-flex m-t-10 justify-content-end">
  27.             <div class="">
  28.             </div>
  29.         </div>
  30.     {% endif %}     
  31. </div>
  32. <!-- ============================================================== -->
  33. <!-- End Bread crumb and right sidebar toggle -->
  34. <!-- ============================================================== -->