bizcochito.onion/templates/imagelist.njk

13 lines
354 B
Plaintext
Raw Permalink Normal View History

2024-07-03 07:47:47 +00:00
{% macro images_list(image_list) %}
<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>
{% endmacro %}