Version 1
[yaffs-website] / web / core / themes / stable / templates / content-edit / text-format-wrapper.html.twig
1 {#
2 /**
3  * @file
4  * Theme override for a text format-enabled form element.
5  *
6  * Available variables:
7  * - children: Text format element children.
8  * - description: Text format element description.
9  * - attributes: HTML attributes for the containing element.
10  * - aria_description: Flag for whether or not an ARIA description has been
11  *   added to the description container.
12  *
13  * @see template_preprocess_text_format_wrapper()
14  */
15 #}
16 <div class="js-text-format-wrapper js-form-item form-item">
17   {{ children }}
18   {% if description %}
19     <div{{ attributes }}>{{ description }}</div>
20   {% endif %}
21 </div>