block--search-form-block.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
- 9 core/themes/olivero/templates/block/block--search-form-block.html.twig
- 9 core/themes/seven/templates/classy/block/block--search-form-block.html.twig
- 9 core/themes/claro/templates/classy/block/block--search-form-block.html.twig
- 9 core/themes/bartik/templates/block--search-form-block.html.twig
- 9 core/themes/starterkit_theme/templates/block/block--search-form-block.html.twig
- 9 core/themes/classy/templates/block/block--search-form-block.html.twig
- 8.9.x core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
- 8.9.x core/themes/seven/templates/classy/block/block--search-form-block.html.twig
- 8.9.x core/themes/claro/templates/classy/block/block--search-form-block.html.twig
- 8.9.x core/themes/bartik/templates/block--search-form-block.html.twig
- 8.9.x core/themes/classy/templates/block/block--search-form-block.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/components/search/block--search-form-block.html.twig
- 11.x core/themes/olivero/templates/block/block--search-form-block.html.twig
- 11.x core/themes/claro/templates/classy/block/block--search-form-block.html.twig
- 11.x core/themes/starterkit_theme/templates/block/block--search-form-block.html.twig
Olivero's theme implementation for a search form block.
Available variables:
- content: The content of this block.
- content_attributes: A list of HTML attributes applied to the main content tag that appears in the template.
See also
File
-
core/
themes/ olivero/ templates/ block/ block--search-form-block.html.twig
View source
- {#
- /**
- * @file
- * Olivero's theme implementation for a search form block.
- *
- * Available variables:
- * - content: The content of this block.
- * - content_attributes: A list of HTML attributes applied to the main content
- * tag that appears in the template.
- *
- * @see template_preprocess_block()
- * @see search_preprocess_block()
- *
- * @ingroup themeable
- */
- #}
- {%
- set classes = [
- 'block',
- 'block-search',
- ]
- %}
- <div{{ attributes.addClass(classes) }}>
- {{ title_prefix }}
- {% if label %}
- <h2{{ title_attributes }}>{{ label }}</h2>
- {% endif %}
- {{ title_suffix }}
- {% block content %}
- <div{{ content_attributes.addClass('content', 'container-inline') }}>
- {{ content }}
- </div>
- {% endblock %}
- </div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.