forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
18 lines
347 B
Twig
18 lines
347 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Theme override for a 'radios' #type form element.
|
|
*
|
|
* Available variables
|
|
* - attributes: A list of HTML attributes for the wrapper element.
|
|
* - children: The rendered radios.
|
|
*
|
|
* @see template_preprocess_radios()
|
|
*/
|
|
#}
|
|
{%
|
|
set classes = [
|
|
'radios',
|
|
]
|
|
%}
|
|
<div{{ attributes.addClass(classes) }}>{{ children }}</div> |