1{#
2/**
3 * @file
4 * Theme override for a details element.
5 *
6 * Available variables
7 * - attributes: A list of HTML attributes for the details element.
8 * - errors: (optional) Any errors for this details element, may not be set.
9 * - title: (optional) The title of the element, may not be set.
10 * - summary_attributes: A list of HTML attributes for the summary element.
11 * - description: (optional) The description of the element, may not be set.
12 * - children: (optional) The children of the element, may not be set.
13 * - value: (optional) The value of the element, may not be set.
14 *
15 * @see template_preprocess_details()
16 */
17#}
18<details{{ attributes }}>
19  {%
20    set summary_classes = [
21      required ? 'js-form-required',
22      required ? 'form-required',
23    ]
24  %}
25  {%- if title -%}
26    <summary{{ summary_attributes.addClass(summary_classes) }}>{{ title }}</summary>
27  {%- endif -%}
28
29  {% if errors %}
30    <div>
31      {{ errors }}
32    </div>
33  {% endif %}
34
35  {{ description }}
36  {{ children }}
37  {{ value }}
38</details>
39