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

Same filename in this branch
  1. 11.x core/themes/olivero/templates/block/block--search-form-block.html.twig
  2. 11.x core/themes/claro/templates/classy/block/block--search-form-block.html.twig
  3. 11.x core/themes/starterkit_theme/templates/block/block--search-form-block.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
  2. 9 core/themes/olivero/templates/block/block--search-form-block.html.twig
  3. 9 core/themes/seven/templates/classy/block/block--search-form-block.html.twig
  4. 9 core/themes/claro/templates/classy/block/block--search-form-block.html.twig
  5. 9 core/themes/bartik/templates/block--search-form-block.html.twig
  6. 9 core/themes/starterkit_theme/templates/block/block--search-form-block.html.twig
  7. 9 core/themes/classy/templates/block/block--search-form-block.html.twig
  8. 8.9.x core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
  9. 8.9.x core/themes/seven/templates/classy/block/block--search-form-block.html.twig
  10. 8.9.x core/themes/claro/templates/classy/block/block--search-form-block.html.twig
  11. 8.9.x core/themes/bartik/templates/block--search-form-block.html.twig
  12. 8.9.x core/themes/classy/templates/block/block--search-form-block.html.twig
  13. 10 core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
  14. 10 core/themes/olivero/templates/block/block--search-form-block.html.twig
  15. 10 core/themes/claro/templates/classy/block/block--search-form-block.html.twig
  16. 10 core/themes/starterkit_theme/templates/block/block--search-form-block.html.twig

Theme override for the search form block.

Available variables:

  • plugin_id: The ID of the block implementation.
  • label: The configured label of the block if visible.
  • configuration: A list of the block's configuration values, including:
    • label: The configured label for the block.
    • label_display: The display settings for the label.
    • provider: The module or other provider that provided this block plugin.
    • Block plugin specific settings will also be stored here.
  • in_preview: Whether the plugin is being rendered in preview mode.
  • content: The content of this block.
  • attributes: A list HTML attributes populated by modules, intended to be added to the main container tag of this template. Includes:

    • id: A valid HTML ID and guaranteed unique.
  • title_attributes: Same as attributes, except applied to the main title tag that appears in the template.
  • title_prefix: Additional output populated by modules, intended to be displayed in front of the main title tag that appears in the template.
  • title_suffix: Additional output populated by modules, intended to be displayed after the main title tag that appears in the template.

See also

template_preprocess_block()

search_preprocess_block()

File

core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for the search form block.
  5. *
  6. * Available variables:
  7. * - plugin_id: The ID of the block implementation.
  8. * - label: The configured label of the block if visible.
  9. * - configuration: A list of the block's configuration values, including:
  10. * - label: The configured label for the block.
  11. * - label_display: The display settings for the label.
  12. * - provider: The module or other provider that provided this block plugin.
  13. * - Block plugin specific settings will also be stored here.
  14. * - in_preview: Whether the plugin is being rendered in preview mode.
  15. * - content: The content of this block.
  16. * - attributes: A list HTML attributes populated by modules, intended to
  17. * be added to the main container tag of this template. Includes:
  18. * - id: A valid HTML ID and guaranteed unique.
  19. * - title_attributes: Same as attributes, except applied to the main title
  20. * tag that appears in the template.
  21. * - title_prefix: Additional output populated by modules, intended to be
  22. * displayed in front of the main title tag that appears in the template.
  23. * - title_suffix: Additional output populated by modules, intended to be
  24. * displayed after the main title tag that appears in the template.
  25. *
  26. * @see template_preprocess_block()
  27. * @see search_preprocess_block()
  28. */
  29. #}
  30. {%
  31. set classes = [
  32. 'block',
  33. 'block-search',
  34. 'container-inline',
  35. ]
  36. %}
  37. <div class="search-iconwrap">
  38. <a class="search-link" title="{{ 'Go to the search page'|t }}" href="{{ path('search.view') }}">
  39. <span class="search-icon" aria-hidden="true">{% include active_theme_path() ~ '/images/svg/search.svg' %}</span>
  40. <span class="visually-hidden">{{ 'Search'|t }}</span>
  41. </a>
  42. </div>
  43. <div{{ attributes.addClass(classes) }}>
  44. {{ title_prefix }}
  45. {% if label %}
  46. <h2{{ title_attributes.addClass('visually-hidden') }}>{{ label }}</h2>
  47. {% endif %}
  48. {{ title_suffix }}
  49. {% block content %}
  50. {{ content }}
  51. {% endblock %}
  52. </div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.