dropbutton-wrapper.html.twig in Drupal 8
Same filename in this branch
Same filename and directory in other branches
Theme override for a dropbutton wrapper.
Available variables:
- children: Contains the child elements of the dropbutton menu.
See also
File
core/themes/stable/templates/form/dropbutton-wrapper.html.twigView source
- {#
- /**
- * @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 %}