This repository has been archived on 2019-08-06. You can view files and clone it, but cannot push or open issues/pull-requests.
searx/result_templates/file.html

16 lines
420 B
HTML

{% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %}
{{ result_header(result, favicons) }}
{{ result_sub_header(result) }}
{% if result.filesize %}<br />{{ icon('floppy-disk') }} {{ _('Filesize') }}
<span class="badge">
{{ result.filesize }}
</span>{% endif %}
{% if rtl %}
{{ result_footer_rtl(result) }}
{% else %}
{{ result_footer(result) }}
{% endif %}