{% for block in section.blocks %}
<div class="grid-item" {{ block.shopify_attributes }}>
{% case block.type %}
{% when 'text' %}
{{ block.settings.content }}
{% when 'image' %}
<img src="{{ block.settings.image | img_url }}">
{% endcase %}
</div>
{% endfor %}
{% schema %}
{
"name": "Section name",
"blocks": [
{
"type": "text",
"name": "Text",
"settings": [
...
...
...
]
},
{
"type": "image",
"name": "Image",
"settings": [
...
...
...
]
}
]
}
{% endschema %}