11 lines
285 B
Plaintext
11 lines
285 B
Plaintext
|
<div class="img">
|
||
|
{% for image in image_list %}
|
||
|
<a href="https://{{ image.url }}">
|
||
|
<img style="height:31px;
|
||
|
width:auto"
|
||
|
src="/static/icons/{{ image.folder }}/}{{ image.name }}"
|
||
|
alt="{{ image.url }}" />
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
</div>
|