freehold-cottage/_includes/responsive-image.html
2022-11-11 04:16:46 +00:00

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">