{% assign section = include.section %}
{% if section.title or section.subtitle %}
{% assign title_is_not_empty = section.title | is_not_empty %} {% if title_is_not_empty %}

{{ section.title }}

{% endif %} {% assign subtitle_is_not_empty = section.subtitle | is_not_empty %} {% if subtitle_is_not_empty %}

{{ section.subtitle }}

{% endif %}
{% endif %} {% assign actions_is_not_empty = section.actions | is_not_empty %} {% if actions_is_not_empty %}
{% include cta_buttons.html actions=section.actions %}
{% endif %}