templates/Slivki/breadcrumbs.html.twig line 1

Open in your IDE?
  1. <div class="breadcrumbs">
  2.     <a href="{{ base_url }}">Главная</a>
  3.     {% for category in parentCategoryList %}
  4.         <i class="fa fa-angle-right"></i>&nbsp;<a href="{{ getCategoryURL(category) }}">
  5.         {{ directorName is defined and directorName and loop.last ? directorName : category.getName() }}
  6.         {% if showCityName is defined and loop.last and parentCategoryList[0].getCity() %}
  7.             в {{ parentCategoryList[0].getCity().getNameLocative() }}
  8.         {% endif %}
  9.     </a>
  10.     {% endfor %}
  11.     {% if supplierCategoryData is defined and supplierCategoryData %}
  12.         <i class="fa fa-angle-right"></i>&nbsp;<a href="{{ supplierCategoryData.url }}">{{ supplierCategoryData.name }}</a>
  13.     {% endif %}
  14. </div>