openlucius-2.0.0-alpha3/modules/core/ol_main/templates/main-header-block.html.twig
modules/core/ol_main/templates/main-header-block.html.twig
{#
/**
* @file
* Default theme implementation to display a block.
*
* @see template_preprocess_block()
*
* @ingroup themeable
*/
#}
{% if vars.global_message or vars.header_image_url %}
<div class="col-md-12 ol-main">
{% if vars.global_message %}
<div class="row heading">
<div class="col-sm text-center global-message">
{{ vars.global_message }}
</div>
</div>
{% endif %}
{% if vars.header_image_url %}
<div class="row header-image">
<div>
<img class='img-fluid w-100' src="{{ vars.header_image_url }}" alt="group header image" />
</div>
</div>
{% endif %}
</div>
{% endif %}
