custom/plugins/RHWebCleue/src/Resources/views/storefront/layout/breadcrumb.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/breadcrumb.html.twig' %}
  2. {% block layout_breadcrumb_list_item %}
  3.     {% if loop.index == 1 and theme_config('rhweb-header-layout-navigation-home') %}
  4.         <li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  5.             <a href="{{ path('frontend.home.page') }}" class="breadcrumb-link" title="{{ "general.homeLink"|trans|striptags }}" itemprop="item">
  6.                 <link itemprop="url"
  7.                       href="{{ path('frontend.home.page') }}"/>
  8.                 <span class="breadcrumb-title" itemprop="name">{{ "general.homeLink"|trans|striptags }}</span>
  9.             </a>
  10.         </li>
  11.         <div class="breadcrumb-placeholder">
  12.             {% sw_icon 'arrow-medium-right' style { 'size': 'fluid', 'pack': 'solid'} %}
  13.         </div>
  14.     {% endif %}
  15.     {{ parent() }}
  16. {% endblock %}