{% 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 grid_items_is_not_empty = section.grid_items | is_not_empty %} {% if grid_items_is_not_empty %}
{% for item in section.grid_items %}
{% assign image_is_not_empty = item.image | is_not_empty %} {% if image_is_not_empty %}
{{ item.title }}
{% endif %} {% assign title_is_not_empty = item.title | is_not_empty %} {% if title_is_not_empty %}

{% assign title_url_is_not_empty = item.title_url | is_not_empty %} {% if title_url_is_not_empty %} {{ item.title }} {% else %} {{ item.title }} {% endif %}

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