{% if item.text_position == 'between' %}
{% if item.subtitle and item.subtitle_position == 'above-heading' %}
{{ item.subtitle }}
{% endif %}
{% if item.title %}
{{ item.title }}
{% endif %}
{% if item.subtitle and item.subtitle_position == 'below-heading' %}
{{ item.subtitle }}
{% endif %}
{{ item.description_html }}
{% for button in item.buttons %}
{% if button.button_url and button.button_text %}
{% if item.color_body_text == 'text-black' or item.color_body_text == 'text-dark' %}
{{button.button_text}}
{% else %}
{{button.button_text}}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% if item.subtitle and item.subtitle_position == 'above-heading' %}
{{ item.subtitle }}
{% endif %}
{% if item.title %}
{{ item.title }}
{% endif %}
{% if item.subtitle and item.subtitle_position == 'below-heading' %}
{{ item.subtitle }}
{% endif %}
{{ item.description_html }}
{% for button in item.buttons %}
{% if button.button_url and button.button_text %}
{% if item.color_body_text == 'text-black' or item.color_body_text == 'text-dark' %}
{{button.button_text}}
{% else %}
{{button.button_text}}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% elsif item._type == 'image' %}