Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save admariner/ceb2da944183deeb4621980dfe5faa41 to your computer and use it in GitHub Desktop.
Save admariner/ceb2da944183deeb4621980dfe5faa41 to your computer and use it in GitHub Desktop.
Responsive images: Set up different image sizes – https://www.shopify.com/partners/blog/using-responsive-images
<a href="{{ article.url }}" class="article__grid-image">
<img id="{{ img_id }}"
class="article__grid-image lazyload"
src="{{ article.image | img_url: '300x300' }}"
data-src="{{ img_url }}"
data-widths="[180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
data-aspectratio="{{ article.image.aspect_ratio }}"
data-sizes="auto"
alt="{{ article.image.alt | escape }}">
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment