You are here

field-group-accordion.html.twig in Field Group 8.3

Same filename and directory in other branches
  1. 8 templates/field-group-accordion.html.twig

Default theme implementation for a fieldgroup accordion item.

Available variables:

  • children: The children of the group.
  • attributes: A list of HTML attributes for the group wrapper.

File

templates/field-group-accordion.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a fieldgroup accordion item.
  5. *
  6. * Available variables:
  7. * - children: The children of the group.
  8. * - attributes: A list of HTML attributes for the group wrapper.
  9. *
  10. * @see template_preprocess_field_group_accordion()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {%
  16. set classes = [
  17. 'field-group-accordion-wrapper',
  18. ]
  19. %}
  20. <div {{ attributes.addClass(classes) }}>{{ children }}</div>