Hello,
I have this code which works for listing several images:
{% for img in page.header.gallerieAvant %}
<li>
{{ page.media[img.name].html( header.title, img.name|split('.')[0], 'image-zoom__preview js-image-zoom__preview')|raw }}
</li>
{% endfor %}
But if I want to use the GRAV srcset feature, uploading images with the @3x suffix at the end of the filename (e.g. `[email protected]), my images are not displayed anymore.
My frontmatter looks like this:
---
title: 'Chantier 5'
gallerieAvant:
refection-façade--oct-2019--01--.jpeg:
name: refection-faç[email protected]
type: image/jpeg
size: 2808494
path: refection-faç[email protected]
Any idea please? Should I use a different method?