stack/src/components/sections/documents-section/documents-section.twig line 1

Open in your IDE?
  1. {% set com_props = props %}
  2. {% set section_props = {
  3.   name: "s-documents",
  4.   id: props.id,
  5.   is_container: props.is_container,
  6.   spacing: props.spacing,
  7. } %}
  8. {% set header_props = {
  9.   heading: {
  10.     title: props.header.heading.title,
  11.     style: "h4",
  12.   },
  13.   variant: "left",
  14.   spacing: "sm",
  15.   extra_class: "s-documents__header"
  16. } %}
  17. {% if props.items %}
  18.   {% embed "@Components/base-section/base-section.twig" with {props: section_props} %}
  19.     {% block content %}
  20.       {% if com_props.header %}
  21.         {% include "@Components/base-header/base-header.twig" with {props: header_props} %}
  22.       {% endif %}
  23.       {% include "@Components/groups/documents-group/documents-group.twig" with {props: {items: com_props.items}} %}
  24.     {% endblock %}
  25.   {% endembed %}
  26. {% endif %}