custom/plugins/DreiscSeoPro/src/Resources/views/storefront/dreisc-seo/component/breadcrumb/default.html.twig line 1

Open in your IDE?
  1. {% block dreisc_seo_component_breadcrumb_default %}
  2. <li class="breadcrumb-item"
  3.     {% if key is same as(categoryId) %}aria-current="page"{% endif %}>
  4.     {% if breadcrumbCategory.type == 'folder' %}
  5.         <div>{{ name }}</div>
  6.     {% else %}
  7.         <a href="{{ category_url(breadcrumbCategory) }}"
  8.            class="breadcrumb-link {% if key is same as(categoryId) and true != ignoreActive %} is-active{% endif %}"
  9.            title="{{ name }}"
  10.            {% if category_linknewtab(breadcrumbCategory) %}target="_blank"{% endif %}
  11.            itemprop="item">
  12.             <link itemprop="url"
  13.                   href="{{ category_url(breadcrumbCategory) }}"/>
  14.             <span class="breadcrumb-title" itemprop="name">{{ name }}</span>
  15.         </a>
  16.         <meta itemprop="position" content="{{ breadcrumbCategory.id }}"/>
  17.     {% endif %}
  18. </li>
  19. {% endblock %}