Files
Popsu-coloque/web/themes/contrib/mediteran/templates/form/dropbutton-wrapper.html.twig
T
2020-06-08 23:57:36 +02:00

21 lines
385 B
Twig

{#
/**
* @file
* Theme override for a dropbutton wrapper.
*
* Available variables:
* - children: Contains the child elements of the dropbutton menu.
*
* @see template_preprocess()
*/
#}
{% if children %}
{% spaceless %}
<div class="dropbutton-wrapper">
<div class="dropbutton-widget">
{{ children }}
</div>
</div>
{% endspaceless %}
{% endif %}