{# /** * @file * Theme override to display a block. */ #} {% set classes = [ 'block', 'action-block', 'block-' ~ configuration.provider|clean_class, 'block-' ~ plugin_id|clean_class, ] %}
{{ title_prefix }} {{ title_suffix }} {% block content %} {% if content.field_cta_format['#items'].getValue()|first.value == "style1" %}
{% if label %}
{% if block_title_style == 'block-title-2' %} {% if block_subtitle %}
{{ block_subtitle }}
{% endif %} {{ label }} {% else %} {{ label }} {% if block_subtitle %}
{{ block_subtitle }}
{% endif %} {% endif %}
{% endif %}
{{ content.body }}
{% if content.field_link|render %} {% endif %}
{% else %}
{% if label %}
{% if block_title_style == 'block-title-2' %} {% if block_subtitle %}
{{ block_subtitle }}
{% endif %} {{ label }} {% else %} {{ label }} {% if block_subtitle %}
{{ block_subtitle }}
{% endif %} {% endif %}
{% endif %}
{{ content.body }}
{% if content.field_link|render %} {% endif %}
{% endif %} {% endblock %}