Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / templates / components / footer-promo-block / block--bundle--footer-promo-block.html.twig
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 <div{{ attributes }}>
29   {{ content.field_promo_image }}
30   {{ title_prefix }}
31   {% if label %}
32     <h2{{ title_attributes }}>{{ label }}</h2>
33   {% elseif content.field_title %}
34     <h2{{ title_attributes }}>{{ content.field_title }}</h2>
35   {% endif %}
36   {{ title_suffix }}
37   {% block content %}
38     <div class="footer-promo-content">
39       {% if not label %}
40         {{ content|without('field_title')|without('field_promo_image') }}
41       {% else %}
42         {{ content|without('field_promo_image') }}
43       {% endif %}
44     </div>
45   {% endblock %}
46 </div>