block--bundle--banner-block.html.twig

Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/components/banner-block/block--bundle--banner-block.html.twig
  2. 8.9.x core/profiles/demo_umami/themes/umami/templates/components/banner-block/block--bundle--banner-block.html.twig
  3. 10 core/profiles/demo_umami/themes/umami/templates/components/banner-block/block--bundle--banner-block.html.twig

Theme override 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()

File

core/profiles/demo_umami/themes/umami/templates/components/banner-block/block--bundle--banner-block.html.twig

View source
  1. {% extends "block.html.twig" %}
  2. {#
  3. /**
  4. * @file
  5. * Theme override to display a block.
  6. *
  7. * Available variables:
  8. * - plugin_id: The ID of the block implementation.
  9. * - label: The configured label of the block if visible.
  10. * - configuration: A list of the block's configuration values.
  11. * - label: The configured label for the block.
  12. * - label_display: The display settings for the label.
  13. * - provider: The module or other provider that provided this block plugin.
  14. * - Block plugin specific settings will also be stored here.
  15. * - in_preview: Whether the plugin is being rendered in preview mode.
  16. * - content: The content of this block.
  17. * - attributes: array of HTML attributes populated by modules, intended to
  18. * be added to the main container tag of this template.
  19. * - id: A valid HTML ID and guaranteed unique.
  20. * - title_attributes: Same as attributes, except applied to the main title
  21. * tag that appears in the template.
  22. * - title_prefix: Additional output populated by modules, intended to be
  23. * displayed in front of the main title tag that appears in the template.
  24. * - title_suffix: Additional output populated by modules, intended to be
  25. * displayed after the main title tag that appears in the template.
  26. *
  27. * @see template_preprocess_block()
  28. */
  29. #}
  30. {% block content %}
  31. {% embed 'umami:banner' with {
  32. attributes: create_attribute(),
  33. } %}
  34. {% block image %}
  35. {{ content.field_media_image }}
  36. {% endblock %}
  37. {% block content %}
  38. {% include "umami:title" with {
  39. attributes: create_attribute({'class': ['banner__title']}),
  40. label: content.field_title,
  41. } only %}
  42. {{ content|without(['field_media_image', 'field_title']) }}
  43. {% endblock %}
  44. {% endembed %}
  45. {% endblock %}

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