{% if style == 1 %}
{# 3 Teaser stacked #}
{{ title1 }}
{{ desc1|raw }}
{% if buttonText1 %}
{{ buttonText1 }}
{% endif %}
{{ title2 }}
{{ desc2|raw }}
{% if buttonText2 %}
{{ buttonText2 }}
{% endif %}
{{ title3 }}
{{ desc3|raw }}
{% if buttonText3 %}
{{ buttonText3 }}
{% endif %}
{% elseif style == 2 %}
{# 4 Teaser Row #}
{% if sImageURL1 %}
{{ title1 }}
{% if buttonText1 %}
{{ buttonText1 }}
{% endif %}
{% endif %}
{% if sImageURL2 %}
{{ title2 }}
{% if buttonText2 %}
{{ buttonText2 }}
{% endif %}
{% endif %}
{% if sImageURL3 %}
{{ title3 }}
{% if buttonText3 %}
{{ buttonText3 }}
{% endif %}
{% endif %}
{% if sImageURL4 %}
{{ title4 }}
{% if buttonText4 %}
{{ buttonText4 }}
{% endif %}
{% endif %}
{% endif %}