public/themes/default/product/bread-crumb.html.twig line 1

Open in your IDE?
  1. {#<div class="title-breadcrumb-special dt-sl mb-3">#}
  2. {#    <div class="breadcrumb dt-sl">#}
  3. {#        {% set firstCategory = product.productCategories|first %}#}
  4. {#        <nav aria-label="breadcrumb">#}
  5. {#            <ol class="breadcrumb">#}
  6. {#                <li class="breadcrumb-item">#}
  7. {#                    <a href="{{ path('app_shop_site_index') }}">خانه</a>#}
  8. {#                </li>#}
  9. {#                {% if firstCategory %}#}
  10. {#                    <li class="breadcrumb-item">#}
  11. {#                        <a href="#">{{ firstCategory.name }}</a>#}
  12. {#                    </li>#}
  13. {#                    {% for cat in getBreadcrumb(firstCategory) %}#}
  14. {#                        <li class="breadcrumb-item">#}
  15. {#                            <a href="#">{{ cat.name }}</a>#}
  16. {#                        </li>#}
  17. {#                    {% endfor %}#}
  18. {#                {% endif %}#}
  19. {#            </ol>#}
  20. {#        </nav>#}
  21. {#    </div>#}
  22. {#</div>#}
  23. <div class="title-breadcrumb-special dt-sl mb-3">
  24.     <div class="breadcrumb dt-sl">
  25.         {% set firstCategory = product.productCategories|first %}
  26.         <nav aria-label="breadcrumb">
  27.             <ol class="breadcrumb">
  28.                 <li class="breadcrumb-item">
  29.                     <a href="{{ path('app_shop_site_index') }}">خانه</a>
  30.                 </li>
  31.                 {% if firstCategory %}
  32.                     {% for cat in getBreadcrumb(firstCategory) %}
  33.                         <li class="breadcrumb-item">
  34.                             <a href="{{ path('app_shop_site_product_category', {'urlSlug': cat.urlSlug}) }}">
  35.                                 {{ cat.name }}
  36.                             </a>
  37.                         </li>
  38.                     {% endfor %}
  39.                 {% endif %}
  40.             </ol>
  41.         </nav>
  42.     </div>
  43. </div>