vendor/crehler/theme-extensions/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@CrehlerMojeBambinoEngine/storefront/component/product/listing.html.twig" %}
  2. {% block product_listing %}
  3.     {% set currentCategory = page.header.navigation.active  %}
  4.     {% set isArrangment = (currentCategory.translated.customFields.crehler_category_is_arrangements
  5.         or currentCategory.translated.customFields.crehler_category_is_inspiration)
  6.         or app.request.query.has('is-arrangement')
  7.     %}
  8.     {% if isArrangment %}
  9.         {% set listingPagination = listingPagination|merge({'params': listingPagination.params|merge({'is-arrangement': 1})}) %}
  10.         {% set listingColumns = "col-sm-6 col-12" %}
  11.         {% set boxLayout = "arrangement" %}
  12.     {% endif %}
  13.     {{ parent() }}
  14. {% endblock %}