{# Section layout — label + rendered children #} {% set label_text = data._label_text | default("") %} {% set label_disabled = data._label_disabled | default(false) %} {% set label_position = data._label_position | default("left") %} {% set has_background = data.background is defined and data.background %} {% if label_position in ["top", "bottom"] %} {% set pad_direction = "x" %} {% set section_shadow = "hover-shadow" %} {% set section_content_shadow = "" %} {% else %} {% set pad_direction = "e" %} {% set section_shadow = "" %} {% set section_content_shadow = "hover-shadow" %} {% endif %} {# Check if content is list-like (for spacing) #} {% set children = data._children | default([]) %} {% set spacing = "px-4 p-4" %}
{# Label — left or top position #} {% if not label_disabled %} {% if label_position == "left" %}
{{ label_text }}
{% elif label_position == "top" %}
{{ label_text }}
{% endif %} {% endif %}
{% if data._inner_html is defined and data._inner_html %} {{ data._inner_html }} {% else %} {% for child in children %} {{ child.html }} {% endfor %} {% endif %}
{# Label — bottom position #} {% if not label_disabled and label_position == "bottom" %}
{{ label_text }}
{% endif %}