You are here

block--search.html.twig in Express 8

Default theme implementation to display a search 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.
    • label: The configured label for the block.
    • label_display: The display settings for the label.
    • module: The module that provided this block plugin.
    • cache: The cache settings.
    • Block plugin specific settings will also be stored here.
  • block - The full block entity.
    • label_hidden: The hidden block title value if the block was configured to hide the title ('label' is empty in this case).
    • module: The module that generated the block.
    • delta: An ID for the block, unique within each module.
    • region: The block region embedding the current block.
  • content: The content of this block.
  • attributes: array of HTML attributes populated by modules, intended to be added to the main container tag of this template.

    • 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.

File

themes/contrib/bootstrap/templates/block/block--search.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a search 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.
  10. * - label: The configured label for the block.
  11. * - label_display: The display settings for the label.
  12. * - module: The module that provided this block plugin.
  13. * - cache: The cache settings.
  14. * - Block plugin specific settings will also be stored here.
  15. * - block - The full block entity.
  16. * - label_hidden: The hidden block title value if the block was
  17. * configured to hide the title ('label' is empty in this case).
  18. * - module: The module that generated the block.
  19. * - delta: An ID for the block, unique within each module.
  20. * - region: The block region embedding the current block.
  21. * - content: The content of this block.
  22. * - attributes: array of HTML attributes populated by modules, intended to
  23. * be added to the main container tag of this template.
  24. * - id: A valid HTML ID and guaranteed unique.
  25. * - title_attributes: Same as attributes, except applied to the main title
  26. * tag that appears in the template.
  27. * - title_prefix: Additional output populated by modules, intended to be
  28. * displayed in front of the main title tag that appears in the template.
  29. * - title_suffix: Additional output populated by modules, intended to be
  30. * displayed after the main title tag that appears in the template.
  31. *
  32. * @ingroup templates
  33. *
  34. * @see template_preprocess_block()
  35. */
  36. #}
  37. {%
  38. set classes = [
  39. 'block',
  40. 'block-' ~ configuration.provider|clean_class,
  41. 'block-' ~ plugin_id|clean_class,
  42. ]
  43. %}
  44. <div{{ attributes.addClass(classes) }}>
  45. {{ title_prefix }}
  46. {% if label %}
  47. <h2{{ title_attributes.addClass('visually-hidden') }}>{{ label }}</h2>
  48. {% endif %}
  49. {{ title_suffix }}
  50. {% block content %}
  51. {{ content }}
  52. {% endblock %}
  53. </div>