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. 10 core/profiles/demo_umami/themes/umami/templates/components/banner-block/block--bundle--banner-block.html.twig
  3. 11.x 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.
  • 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. {#
  2. /**
  3. * @file
  4. * Theme override 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. * - content: The content of this block.
  15. * - attributes: array of HTML attributes populated by modules, intended to
  16. * be added to the main container tag of this template.
  17. * - id: A valid HTML ID and guaranteed unique.
  18. * - title_attributes: Same as attributes, except applied to the main title
  19. * tag that appears in the template.
  20. * - title_prefix: Additional output populated by modules, intended to be
  21. * displayed in front of the main title tag that appears in the template.
  22. * - title_suffix: Additional output populated by modules, intended to be
  23. * displayed after the main title tag that appears in the template.
  24. *
  25. * @see template_preprocess_block()
  26. */
  27. #}
  28. {%
  29. set classes = [
  30. 'block',
  31. 'block-' ~ configuration.provider|clean_class,
  32. 'block-' ~ plugin_id|clean_class,
  33. 'cover-image',
  34. ]
  35. %}
  36. {% set background_image = file_url(content.field_media_image[0]['#media'].field_media_image.entity.uri.value) %}
  37. <div{{ attributes.addClass(classes) }} style="background-image: url({{ background_image }})">
  38. <div class="block-inner">
  39. {{ title_prefix }}
  40. {% if label %}
  41. <h2{{ title_attributes }}>{{ label }}</h2>
  42. {% endif %}
  43. {{ title_suffix }}
  44. {% block content %}
  45. {{ content.field_media_image }}
  46. <div class="summary">
  47. {{ content|without('field_media_image') }}
  48. </div>
  49. {% endblock %}
  50. </div>
  51. </div>

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