26 lines
694 B
Twig
26 lines
694 B
Twig
{% block pager %}
|
|
<twig:Pager
|
|
pager="{{ pager }}"
|
|
show_load_more_button="{{ show_load_more_button }}"
|
|
show_scroll_top_button="{{ show_scroll_top_button }}"
|
|
/>
|
|
{% endblock %}
|
|
|
|
{% block pagerTop %}
|
|
<twig:PagerTop
|
|
pager="{{ pager }}"
|
|
/>
|
|
{% endblock %}
|
|
|
|
{% block productList %}
|
|
{{ include('block.productList.html.twig', {products: products, productListAttrs: productListAttrs|default({}), filterParams: filterParams }) }}
|
|
{% endblock %}
|
|
|
|
{% block sectionDescription %}
|
|
<twig:Section:Description
|
|
id_section="{{ id_category }}"
|
|
id_producer="{{ id_producer }}"
|
|
indexed_filter="{{ indexed_filter }}"
|
|
/>
|
|
{% endblock %}
|