{% extends "layout.html" %} {% set title = "OD-Database - Search" %} {% block body %}
Search
{% if results %}
{% for hit in results %} {% set path = hit[1] + hit[2] %} {# File size #} {% endfor %}
{# 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) }}
{{ hit[0] | filesizeformat }}
Next {% if p > 0 %} Previous {% endif %}
{% else %}
No results
{% endif %}
{% endblock body %}