summaryrefslogtreecommitdiff
path: root/searx/templates
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates')
-rw-r--r--searx/templates/oscar/result_templates/images.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/searx/templates/oscar/result_templates/images.html b/searx/templates/oscar/result_templates/images.html
index b23f34915..b3292f448 100644
--- a/searx/templates/oscar/result_templates/images.html
+++ b/searx/templates/oscar/result_templates/images.html
@@ -16,7 +16,17 @@
{% if result.author %}<span class="photo-author">{{ result.author }}</span><br />{% endif %}
{% if result.content %}
<p class="result-content">
- {{ result.content }}
+ {{ result.content|striptags }}
+ </p>
+ {% endif %}
+ {% if result.img_format %}
+ <p class="result-format">
+ {{ result.img_format }}
+ </p>
+ {% endif %}
+ {% if result.source %}
+ <p class="result-source">
+ {{ result.source }}
</p>
{% endif %}
</div>