{% set thumbnails = { "audio": "audio", "txt": "txt", "svg": "svg", "video": "video", "7z": "archive", "gz": "archive", "rar": "archive", "tar": "archive", "zip": "archive", } %} {% macro create_photo_card(photo, view="grid") %} {% if view == "list" %}
{{photo.basename}}
{% else %}
{{photo.basename}} {% set tags = photo.tags() %} {% set tag_names = [] %} {% for tag in tags %} {% do tag_names.append(tag.name) %} {% endfor %} {% if tags %} T {% endif %}
{% endif %} {% endmacro %}