core: use class based code

This commit is contained in:
2025-04-14 19:29:54 +02:00
parent c68f393703
commit 8a123180c5
5 changed files with 163 additions and 87 deletions

View File

@ -14,9 +14,10 @@
{% for image in images %}
<div class="image-container">
<div class="image-container-element">
<img src='{{ image[0] }}'>
{% if image | length > 1 %}
<a class="export" href="{{ image[1] }}">export file</a>
<img src='{{ image[1] }}'>
<a href="{{ image[0] }}">Large</a>
{% if image|length > 2 %}
<a class="export" href="{{ image[2] }}">export file</a>
{% endif %}
</div>
</div>