{% assign blocks = include.blocks %}
{% for block in blocks %} {% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %}
{% if block.image %}
{{block.title}}
{% endif %}

{{block.title}}

{% if block.text!=nil%}
{{block.text | markdownify }}
{% endif %} {% if block.buttons!=nil%}
{% for button in block.buttons %} {{button.label}} {% endfor %}
{% endif %}
{% endfor %}