Skip to content

Instantly share code, notes, and snippets.

@pavelloz
Created November 20, 2020 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavelloz/0686d94f1e3fab05569f349d94b4c7c4 to your computer and use it in GitHub Desktop.
Save pavelloz/0686d94f1e3fab05569f349d94b4c7c4 to your computer and use it in GitHub Desktop.
Getting jpeg and webp
<picture>
<source srcset="{{ p.photo.versions.uncropped_webp }}" type="image/webp" alt="{{ item.name }}">
<source srcset="{{ p.photo.versions.uncropped }}" type="image/jpeg" alt="{{ item.name }}">
<img src="{{ p.photo.versions.uncropped }}" alt="{{ item.name }}">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment