muser-8.x-1.x-dev/themes/muser_base/templates/flags/field-group-html-element--flagging--favorites.html.twig
themes/muser_base/templates/flags/field-group-html-element--flagging--favorites.html.twig
{#
/**
* @file
* Default theme implementation for a fieldgroup html element.
*
* Available variables:
* - title: Title of the group.
* - title_element: Element to wrap the title.
* - children: The children of the group.
* - wrapper_element: The html element to use
* - attributes: A list of HTML attributes for the group wrapper.
*
* @see template_preprocess_field_group_html_element()
*
* @ingroup themeable
*/
#}
<{{ wrapper_element }} {{ attributes }}>
{% if title %}
<{{ title_element }}{% if collapsible %} class="field-group-toggler"{% endif %}>{{ title }}</{{ title_element }}>
{% endif %}
{{children}}
</{{ wrapper_element }}>