{% extends 'app/layout.html.twig' %}
{% block content %}
{% include "app/partials/navigation/_breadcrumbs.html.twig" %}
{{ pimcore_area('hero-regular', {
'type':'hero-regular-brick',
'params': {
'hero-regular-brick' : {
"headLineEnabled" : true
}
}
}) }}
{% if editmode %}
<h3>Product filter slugs (edit mode only)</h3>
{% for item in productCategoryFilter %}
{% set name = item ~ '-product-filter' %}
<p>{{ name | slug | lower }}</p>
{% endfor %}
<h3>Branch filter slugs</h3>
{% for item in branchFilter %}
{% set name = item ~ '-branch-filter' %}
<p>{{ name | slug | lower }}</p>
{% endfor %}
{% endif %}
{{ pimcore_area('hero-projects-big-and-small', {
type: 'hero-projects-big-and-small-brick',
params : {
'hero-projects-big-and-small-brick': {
projectObjects: pagination.items,
pagination: pagination,
paginationVariables: paginationVariables,
productCategoryFilter: productCategoryFilter,
branchFilter: branchFilter,
}
}
}) }}
{{ pimcore_area('content-brick-1', {
'type':'content-brick',
'params':{
'content-brick': {
'defaultLayout': 'text-image',
'defaultBackgroundColor':'bg-white',
'defaultInverted': false,
'defaultPrimaryLink' : {
'title' : "Direct contact"|trans,
'link': '#',
'target': "",
},
'containerClasses': 'py-10 md:py-20',
}
}
}) }}
{{ pimcore_area('project-overview-faq', {
type: 'faq-brick',
params: {
'faq-brick': {
showContact: 'false',
containerSize: 'md:max-w-[1100px] container',
containerClass: 'mx-auto'
}
}
}) }}
{{ pimcore_area('contact-side-widget', {
type: 'contact-side-widget-brick'
}) }}
{% endblock %}