templates/project/archive.html.twig line 1

Open in your IDE?
  1. {% extends 'app/layout.html.twig' %}
  2. {% block content %}
  3.     {% include "app/partials/navigation/_breadcrumbs.html.twig" %}
  4.     {{ pimcore_area('hero-regular', {
  5.         'type':'hero-regular-brick',
  6.         'params': {
  7.             'hero-regular-brick' : {
  8.                 "headLineEnabled" : true
  9.             }
  10.         }
  11.     }) }}
  12.     {% if editmode %}
  13.         <h3>Product filter slugs (edit mode only)</h3>
  14.         {% for item in productCategoryFilter %}
  15.             {% set name = item ~ '-product-filter' %}
  16.             <p>{{ name | slug | lower }}</p>
  17.         {% endfor %}
  18.         <h3>Branch filter slugs</h3>
  19.         {% for item in branchFilter %}
  20.             {% set name = item ~ '-branch-filter' %}
  21.             <p>{{ name | slug | lower }}</p>
  22.         {% endfor %}
  23.     {% endif %}
  24.     {{ pimcore_area('hero-projects-big-and-small', {
  25.         type: 'hero-projects-big-and-small-brick',
  26.         params : {
  27.             'hero-projects-big-and-small-brick': {
  28.                 projectObjects: pagination.items,
  29.                 pagination: pagination,
  30.                 paginationVariables: paginationVariables,
  31.                 productCategoryFilter: productCategoryFilter,
  32.                 branchFilter: branchFilter,
  33.             }
  34.         }
  35.     }) }}
  36.     {{ pimcore_area('content-brick-1', {
  37.         'type':'content-brick',
  38.         'params':{
  39.             'content-brick': {
  40.                 'defaultLayout': 'text-image',
  41.                 'defaultBackgroundColor':'bg-white',
  42.                 'defaultInverted': false,
  43.                 'defaultPrimaryLink' : {
  44.                     'title' : "Direct contact"|trans,
  45.                     'link': '#',
  46.                     'target': "",
  47.                 },
  48.                 'containerClasses': 'py-10 md:py-20',
  49.             }
  50.         }
  51.     }) }}
  52.     {{ pimcore_area('project-overview-faq', {
  53.         type: 'faq-brick',
  54.         params: {
  55.             'faq-brick': {
  56.                 showContact: 'false',
  57.                 containerSize: 'md:max-w-[1100px] container',
  58.                 containerClass: 'mx-auto'
  59.             }
  60.         }
  61.     }) }}
  62.     {{ pimcore_area('contact-side-widget', {
  63.         type: 'contact-side-widget-brick'
  64.     }) }}
  65. {% endblock %}