2013-08-07 08:43:30 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Default theme implementation for a dropbutton wrapper.
|
|
|
|
*
|
|
|
|
* Available variables:
|
|
|
|
* - children: Contains the child elements of the dropbutton menu.
|
|
|
|
*
|
|
|
|
* @see template_preprocess()
|
|
|
|
*
|
|
|
|
* @ingroup themeable
|
|
|
|
*/
|
|
|
|
#}
|
|
|
|
{% if children %}
|
Issue #3041076 by alexpott, shaal, Gábor Hojtsy, lauriii, Wim Leers, catch, Cottser, jibran, andypost, znerol, xim, joelpittet, effulgentsia: Update Drupal 9 to Twig 2
2019-10-31 12:39:18 +00:00
|
|
|
{% apply spaceless %}
|
2013-08-07 08:43:30 +00:00
|
|
|
<div class="dropbutton-wrapper">
|
|
|
|
<div class="dropbutton-widget">
|
|
|
|
{{ children }}
|
|
|
|
</div>
|
|
|
|
</div>
|
Issue #3041076 by alexpott, shaal, Gábor Hojtsy, lauriii, Wim Leers, catch, Cottser, jibran, andypost, znerol, xim, joelpittet, effulgentsia: Update Drupal 9 to Twig 2
2019-10-31 12:39:18 +00:00
|
|
|
{% endapply %}
|
2013-08-07 08:43:30 +00:00
|
|
|
{% endif %}
|