Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

vertical-tabs.html.twig

Same filename in this branch
  1. 11.1.x core/themes/stable9/templates/navigation/vertical-tabs.html.twig
  2. 11.1.x core/themes/starterkit_theme/templates/navigation/vertical-tabs.html.twig

Default theme implementation for vertical tabs.

Available variables

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

See also

template_preprocess_vertical_tabs()

File

core/modules/system/templates/vertical-tabs.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for vertical tabs.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The rendered tabs.
  9. *
  10. * @see template_preprocess_vertical_tabs()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div{{ attributes.setAttribute('data-vertical-tabs-panes', TRUE) }}>{{ children }}</div>

Related topics

Theme system overview
Functions and templates for the user interface that themes can override.
RSS feed
Powered by Drupal