You are here

vertical-tabs.html.twig in Open Social 8.4

Default theme implementation for vertical tabs.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The rendered tabs.
  • children_raw: The raw tabs titles for in the tabs ul.

File

themes/socialbase/templates/system/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. * - children_raw: The raw tabs titles for in the tabs ul.
  10. * @see template_preprocess_vertical_tabs()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {{ attach_library('socialbase/nav-tabs')}}
  16. <div{{ attributes.setAttribute('data-vertical-tabs-panes', TRUE).addClass('card__block') }}>
  17. {{ children }}
  18. </div>