{% assign section = include.section %}
{% assign image_is_not_empty = section.image | is_not_empty %} {% if image_is_not_empty %}
{% endif %}
{% assign title_is_not_empty = section.title | is_not_empty %} {% if title_is_not_empty %}

{{ section.title }}

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