16 lines
312 B
Twig
16 lines
312 B
Twig
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Default theme implementation for a select element.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - attributes: HTML attributes for the select tag.
|
||
|
* - options: The option element children.
|
||
|
*
|
||
|
* @see template_preprocess_select()
|
||
|
*
|
||
|
* @ingroup themeable
|
||
|
*/
|
||
|
#}
|
||
|
<select{{ attributes }}>{{ options }}</select>
|