pages/_includes/responsive_img.html
2021-11-25 21:48:52 -05:00

7 lines
367 B
HTML

<picture>
{% for i in resized %}
<source media="(max-width: {{ i.width }}px)" srcset="{{ i.path | relative_url }}">
{% endfor %}
<img {% if class %}class="{{ class }}"{% endif %} src="{{ path | relative_url }}" {% if alt %}alt="{{ alt }}"{% endif %} {% if title %}title="{{ title }}"{% endif %} {% if zoomable %}data-zoomable{% endif %} />
</picture>