1KA_F2F/frontend/drupal9/web/modules/contrib/quicktabs/templates/quicktabs-block-content.html.twig
2021-07-27 14:46:32 +02:00

20 lines
495 B
Twig
Executable File

{#
/**
* @file
* 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.
*
* @ingroup themeable
*/
#}
<div id="{{ id }}" class="{{ classes }}" role="tabpanel" aria-labelledby="{{ tabid }}" tabindex="0">
<div class="quicktabs-block-title">{{ title }}</div>
{{ block }}
</div>