{%- assign data = site.data['investimentos'].destaque2_investimentos -%}
{% for item in data.items %} {% assign mod = forloop.index0 | modulo: 2 %}
{% if mod == 0 %}

{{ item.title }}

{% for p in item.texts %}

{{ p }}

{% endfor %}
{% include image.html src=item.image alt=item.title %}
{% else %}
{% include image.html src=item.image alt=item.title %}

{{ item.title }}

{% for p in item.texts %}

{{ p }}

{% endfor %}
{% endif %}
{% endfor %}