You are here

horizontal-tabs.html.twig in Field Group 8.3

Same filename and directory in other branches
  1. 8 templates/horizontal-tabs.html.twig

Default theme implementation for horizontal tabs.

Available variables

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

File

templates/horizontal-tabs.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for horizontal tabs.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The rendered children.
  9. *
  10. * @see template_preprocess_horizontal_tabs()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div data-horizontal-tabs class="horizontal-tabs clearfix">
  16. <ul data-horizontal-tabs-list class="horizontal-tabs-list visually-hidden"></ul>
  17. <div data-horizontal-tabs-panes{{ attributes }}>{{ children }}</div>
  18. </div>