{# Specific extensions, then specific mimetypes, then general mimtypes #} {% set thumbnails = { "svg": "svg", "application/zip": "archive", "application/x-tar": "archive", "archive": "archive", "audio": "audio", "image": "image", "video": "video", "text": "txt", } %} {% macro create_photo_card(photo, view="grid") %} {% set view = (view if view in ("list", "grid") else "grid") %} {% set metadata_inner = "" %} {% if photo.width %} {% set metadata_inner = "{m}{w}×{h}, ".format(m=metadata_inner, w=photo.width, h=photo.height) %} {% endif %} {% if photo.duration %} {% set metadata_inner = "{m}{d}, ".format(m=metadata_inner, d=photo.duration_string) %} {% endif -%}