{% if block.presentation == 'entity' %}
{% if block.nav %} {% set nav_resolved = ctx.blocks.get(block.nav) %} {% if nav_resolved and nav_resolved.block.items %} {% set nav_items = nav_resolved.block.items %} {% if nav_items | length == 1 %} {{ nav_items[0].label | e }} {% else %} {% endif %} {% endif %} {% endif %}
{% if block.entity %}

{% if block.icon %}{{ block.icon | e }} {% endif %}{{ block.entity.title | e }}

{% if block.entity.subtitle %} {{ block.entity.subtitle | e }} {% endif %} {% elif block.title %}

{{ block.title | e }}

{% if block.subtitle %}{{ block.subtitle | e }}{% endif %} {% endif %}
{% if block.content %} {% set aside_resolved = ctx.blocks.get(block.content) %} {% if aside_resolved and aside_resolved.block.type == 'template' and aside_resolved.block.template %} {{ host.render_host_template(aside_resolved.block.template, aside_resolved.block.context) | safe }} {% endif %} {% endif %}
{% else %} {% if block.presentation == 'section' %}

{% if block.icon %}{% endif %} {{ block.title | e }}

{% if block.subtitle %}

{{ block.subtitle | e }}

{% endif %}
{% else %}
{% if block.title %}

{{ block.title | e }}

{% endif %} {% if block.subtitle %}

{{ block.subtitle | e }}

{% endif %}
{% endif %} {% endif %}