Issue #2152231 by rteijeiro, steveoliver, joelpittet, hussainweb, shanethehat, jenlampton, kpa, AnythonyR, EVIIILJ, kgoel, Cottser, dsdeiz, hanpersand: Convert theme_vertical_tabs() to Twig
2014-01-26 05:13:33 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Default theme implementation for vertical tabs.
|
|
|
|
*
|
|
|
|
* Available variables
|
|
|
|
* - attributes: A list of HTML attributes for the wrapper element.
|
|
|
|
* - children: The rendered checkboxes.
|
|
|
|
*
|
|
|
|
* @see template_preprocess_vertical_tabs()
|
|
|
|
*
|
|
|
|
* @ingroup themeable
|
|
|
|
*/
|
|
|
|
#}
|
2015-05-07 00:47:34 +00:00
|
|
|
<div{{ attributes.setAttribute('data-vertical-tabs-panes', TRUE) }}>{{ children }}</div>
|