Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

form--search-block-form.html.twig

Theme override for a 'form' element.

Available variables:

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The child elements of the form.

See also

template_preprocess_form()

File

core/themes/olivero/templates/form--search-block-form.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a 'form' element.
  5. *
  6. * Available variables:
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The child elements of the form.
  9. *
  10. * @see template_preprocess_form()
  11. */
  12. #}
  13. {%
  14. set classes = [
  15. 'search-form',
  16. 'search-block-form',
  17. ]
  18. %}
  19. <form{{ attributes.addClass(classes) }}>
  20. {{ children }}
  21. </form>
RSS feed
Powered by Drupal