Files
drupal-theme-aaron/templates/form/dropbutton-wrapper.html.twig
2026-01-21 22:28:11 -06:00

16 lines
324 B
Twig

{#
/**
* @file
* Theme override for a dropbutton wrapper.
*
* Available variables:
* - children: Contains the child elements of the dropbutton menu.
*
*/
#}
{% if children %}
<div class="dropbutton-wrapper" data-drupal-ajax-container>
<div class="dropbutton-widget">{{- children -}}</div>
</div>
{%- endif %}