templates/pages/product-family.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block main %}
  3.         {% embed "@Components/content-w-aside/content-w-aside.twig" with {props: content_w_aside_props} %}
  4.             {% block content %}
  5.                 {% include "@Components/sections/breadcrumbs-section/breadcrumbs-section.twig" with {props: breadcrumbs|merge({
  6.                     spacing: "top-sm-0",
  7.                     is_container: false
  8.                 })} %}
  9.                 {% include "@Components/sections/categories-section/categories-section.twig" with {props: families_section|merge({
  10.                     is_container: false
  11.                 })} %}
  12.                 {% include "@Components/sections/selected-tag-section/selected-tag-section.twig" with {props: tags} %}
  13.                 {% include "@Components/sections/product-list-section/product-list-section.twig" with {props: product_list_section} %}
  14.             {% endblock %}
  15.             {% block aside %}
  16.                 {% include "@Components/sections/breadcrumbs-section/breadcrumbs-section.twig" with {props: breadcrumbs|merge({
  17.                     spacing: "sm",
  18.                     is_container: false
  19.                 })} %}
  20.                 {% include "@Components/forms/filtration-form/filtration-form.twig" with {props: filtration} %}
  21.             {% endblock %}
  22.         {% endembed %}
  23. {% endblock %}
  24. {% block extraScripts %}
  25.     {{ _schema|raw }}
  26. {% endblock %}