{# /** * @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 */ #} {% spaceless %} {% for option in options %} {% if option.type == 'optgroup' %} {% for sub_option in option.options %} {% endfor %} {% elseif option.type == 'option' %} {% endif %} {% endfor %} {% endspaceless %}