Same filename and directory in other branches
  1. 8.x-3.x templates/quicktabs-block-content.html.twig 1 comment

Theme for Quick Tabs module's block content.

Available variables:

  • title: the title of the block
  • block: the render array of block content
  • classes: the class attribute
  • id: the id attribute
  • tabid: The id of the tab which activates this panel.

File

templates/quicktabs-block-content.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme for Quick Tabs module's block content.
  5. *
  6. * Available variables:
  7. * - title: the title of the block
  8. * - block: the render array of block content
  9. * - classes: the class attribute
  10. * - id: the id attribute
  11. * - tabid: The id of the tab which activates this panel.
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <div id="{{ id }}" class="{{ classes }}" role="tabpanel" aria-labelledby="{{ tabid }}" tabindex="0">
  17. <div class="quicktabs-block-title">{{ title }}</div>
  18. {{ block }}
  19. </div>