16 lines
351 B
Twig
16 lines
351 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for horizontal tabs.
|
|
*
|
|
* Available variables
|
|
* - attributes: A list of HTML attributes for the wrapper element.
|
|
* - children: The rendered children.
|
|
*
|
|
* @see template_preprocess_horizontal_tabs()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div data-horizontal-tabs-panes{{ attributes }}>{{ children }}</div>
|