8 lines
234 B
HTML
8 lines
234 B
HTML
{% capture srcset %}
|
|
{% for i in resized %}
|
|
/{{ i.path }} {{ i.width }}w,
|
|
{% endfor %}
|
|
{% endcapture %}
|
|
|
|
<img src="/{{ path }}" alt="{{ alt }}" srcset="{{ srcset | strip_newlines }} /{{ path }} {{ original.width }}w">
|