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
|
|
|
|
*/
|
|
|
|
#}
|
2014-02-07 04:34:33 +00:00
|
|
|
<div data-vertical-tabs-panes{{ attributes }}>{{ children }}</div>
|