<!-- OlaBoa Story Gallery -->
<section class="olaboa-story-gallery">
  <div class="olaboa-story-gallery__grid">
    {% for block in section.blocks %}
      <div class="olaboa-story-gallery__item" {{ block.shopify_attributes }}>
        {% if block.settings.image %}
          {{ block.settings.image | image_url: width: 800 | image_tag: class: 'olaboa-story-gallery__img', loading: 'lazy' }}
        {% else %}
          <div class="olaboa-story-gallery__placeholder"></div>
        {% endif %}
      </div>
    {% endfor %}
  </div>
</section>

{% schema %}
{
  "name": "OlaBoa Story Gallery",
  "settings": [],
  "blocks": [
    {
      "type": "image",
      "name": "Image",
      "settings": [
        {
          "type": "image_picker",
          "id": "image",
          "label": "Image"
        }
      ]
    }
  ],
  "presets": [
    {
      "name": "OlaBoa Story Gallery",
      "blocks": [
        { "type": "image" },
        { "type": "image" },
        { "type": "image" }
      ]
    }
  ]
}
{% endschema %}
