This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/core/modules/system/templates/select.html.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>