templates/news/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.     {{ pimcore_area('insights-overview-brick', {
  13.         type: 'insights-overview-brick',
  14.         params: {
  15.             'insights-overview-brick' : {
  16.                 collection: pagination.items,
  17.                 pagination: pagination,
  18.                 paginationVariables: paginationVariables,
  19.                 filters: filters
  20.             }
  21.         }
  22.     }) }}
  23.     {{ pimcore_area('content-brick-1', {
  24.         'type':'content-brick',
  25.         'params':{
  26.             'content-brick': {
  27.                 'defaultLayout': 'text-image',
  28.                 'defaultBackgroundColor':'bg-white',
  29.                 'inverted': true,
  30.                 'containerClasses': 'py-10 md:py-20',
  31.             }
  32.         }
  33.     }) }}
  34.     {{ pimcore_area('contact-side-widget', {
  35.         type: 'contact-side-widget-brick'
  36.     }) }}
  37. {% endblock %}