Same filename in this branch
  1. 10 core/modules/block/templates/block.html.twig
  2. 10 core/themes/olivero/templates/block/block.html.twig
  3. 10 core/themes/stable9/templates/block/block.html.twig
  4. 10 core/themes/starterkit_theme/templates/block/block.html.twig
  5. 10 core/themes/claro/templates/classy/block/block.html.twig
  6. 10 core/profiles/demo_umami/themes/umami/templates/classy/block/block.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/block/templates/block.html.twig
  2. 9 core/modules/block/templates/block.html.twig

Default theme implementation to display a 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.
    • 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: 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.

See also

template_preprocess_block()

9 theme calls to block.html.twig
BlockComponentRenderArray::onBuildRender in core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php
Builds render arrays for block plugins and sets it on the event.
BlockComponentRenderArrayTest::testOnBuildRender in core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php
@covers ::onBuildRender
BlockComponentRenderArrayTest::testOnBuildRenderInPreview in core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php
@covers ::onBuildRender
BlockComponentRenderArrayTest::testOnBuildRenderInPreviewEmptyBuild in core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php
@covers ::onBuildRender
BlockComponentRenderArrayTest::testOnBuildRenderWithoutPreviewFallbackString in core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php
@covers ::onBuildRender

... See full list

File

core/modules/block/templates/block.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a 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. * - 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: array of HTML attributes populated by modules, intended to
  17. * be added to the main container tag of this template.
  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. *
  28. * @ingroup themeable
  29. */
  30. #}
  31. <div{{ attributes }}>
  32. {{ title_prefix }}
  33. {% if label %}
  34. <h2{{ title_attributes }}>{{ label }}</h2>
  35. {% endif %}
  36. {{ title_suffix }}
  37. {% block content %}
  38. {{ content }}
  39. {% endblock %}
  40. </div>

Related topics