{% extends "layout.html" %} {% set current_page = "search" %} {% set title = "OD-Database - Search" %} {% block body %}
{# File name & link #}
{{ hl_name |safe }}
{# File type badge #}
{% set mime = get_mime(src["path"]) %}
{% if mime %}
{{ src["path"][src["path"].rfind(".") + 1:] }}
{% endif %}
{# File path #}
{{ hl_path | safe }}{{ truncate_path(src["path"], 60) }}
|
{# File size #}
{{ src["size"] | filesizeformat if src["size"] >= 0 else "?" }} |