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