up the thumbnail res because of object-fit scaling

This commit is contained in:
Rupus Reinefjord 2018-03-28 11:11:13 +02:00
parent fd84f2e180
commit 11a1e48e0d

View file

@ -9,10 +9,10 @@
<div class="photo-grid">
{% for photo in photos %}
<a href="{{ url_for('view_photo', photo_id=photo.id) }}">
<img srcset="{{ photo_resize_url(photo, 200) }},
{{ photo_resize_url(photo, 300) }} 1.5x,
{{ photo_resize_url(photo, 400) }} 2x"
src="{{ photo_resize_url(photo, 200) }}">
<img srcset="{{ photo_resize_url(photo, 300) }},
{{ photo_resize_url(photo, 400) }} 1.5x,
{{ photo_resize_url(photo, 800) }} 2x"
src="{{ photo_resize_url(photo, 300) }}">
</a>
{% endfor %}
</div>