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/bandcamp.html

14 lines
456 B
HTML

{% from 'oscar/macros.html' import result_link, result_footer, result_footer_rtl%}
<h4 class="result_header">
{% if result.image %}<img width="32" height="32" class="favicon" src="{{ image_proxify(result.image) }}">{% endif %}
{{ result_link(result.url, result.title|safe) }}
</h4>
<span class="text-muted">{{ result.type }}; {{ result.subhead }}</span>
{% if rtl %}
{{ result_footer_rtl(result) }}
{% else %}
{{ result_footer(result) }}
{% endif %}