feat: use thumb on album page

This commit is contained in:
2025-05-02 13:29:09 -04:00
parent de051f222d
commit 08c0129af8
2 changed files with 12 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<div class="picture-container">
{% for picture in album._pictures %}
<a href="{{ picture.get_page().html.get_url() }}">
<img src="{{ picture.get_small().get_url() }}">
<img src="{{ picture.get_thumb().get_url() }}">
</a>
{% endfor %}
</div>