{#<div class="title-breadcrumb-special dt-sl mb-3">#}
{# <div class="breadcrumb dt-sl">#}
{# {% set firstCategory = product.productCategories|first %}#}
{# <nav aria-label="breadcrumb">#}
{# <ol class="breadcrumb">#}
{# <li class="breadcrumb-item">#}
{# <a href="{{ path('app_shop_site_index') }}">خانه</a>#}
{# </li>#}
{# {% if firstCategory %}#}
{# <li class="breadcrumb-item">#}
{# <a href="#">{{ firstCategory.name }}</a>#}
{# </li>#}
{# {% for cat in getBreadcrumb(firstCategory) %}#}
{# <li class="breadcrumb-item">#}
{# <a href="#">{{ cat.name }}</a>#}
{# </li>#}
{# {% endfor %}#}
{# {% endif %}#}
{# </ol>#}
{# </nav>#}
{# </div>#}
{#</div>#}
<div class="title-breadcrumb-special dt-sl mb-3">
<div class="breadcrumb dt-sl">
{% set firstCategory = product.productCategories|first %}
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="{{ path('app_shop_site_index') }}">خانه</a>
</li>
{% if firstCategory %}
{% for cat in getBreadcrumb(firstCategory) %}
<li class="breadcrumb-item">
<a href="{{ path('app_shop_site_product_category', {'urlSlug': cat.urlSlug}) }}">
{{ cat.name }}
</a>
</li>
{% endfor %}
{% endif %}
</ol>
</nav>
</div>
</div>