You are here

dropbutton-wrapper.html.twig in Zircon Profile 8.0

Theme override for a dropbutton wrapper.

Available variables:

  • children: Contains the child elements of the dropbutton menu.

See also

template_preprocess()

template_preprocess_dropbutton_wrapper()

File

core/themes/classy/templates/form/dropbutton-wrapper.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a dropbutton wrapper.
  5. *
  6. * Available variables:
  7. * - children: Contains the child elements of the dropbutton menu.
  8. *
  9. * @see template_preprocess()
  10. * @see template_preprocess_dropbutton_wrapper()
  11. */
  12. #}
  13. {% if children %}
  14. {% spaceless %}
  15. <div class="dropbutton-wrapper">
  16. <div class="dropbutton-widget">
  17. {{ children }}
  18. </div>
  19. </div>
  20. {% endspaceless %}
  21. {% endif %}