diff options
author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2016-04-21 15:10:08 +0200 |
---|---|---|
committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2016-04-21 15:10:08 +0200 |
commit | 63d68c8e0fe353af38c5b9b7bdd11b2bcf61346c (patch) | |
tree | cb72cb3a82647691953f8c89794ec66337d57183 | |
parent | f46057feb24132ef10c495a2e60e1a88dd80dd31 (diff) | |
download | searxng-63d68c8e0fe353af38c5b9b7bdd11b2bcf61346c.tar.gz searxng-63d68c8e0fe353af38c5b9b7bdd11b2bcf61346c.zip |
[enh] add img_src to default result template
-rw-r--r-- | searx/templates/oscar/result_templates/default.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/searx/templates/oscar/result_templates/default.html b/searx/templates/oscar/result_templates/default.html index fc61b8ce0..cd2351e28 100644 --- a/searx/templates/oscar/result_templates/default.html +++ b/searx/templates/oscar/result_templates/default.html @@ -13,7 +13,12 @@ </div>
{% endif %}
-{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
+<div class="container-fluid">
+ <div class="row">
+{% if result.img_src %}<img src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" style="width: auto; max-height: 60px; min-height: 60px;" class="col-xs-2 col-sm-4 col-md-4 result-content">{% endif %}
+{% if result.content %}<p class="result-content col-xs-8 col-sm-8 col-md-8">{{ result.content|safe }}</p>{% endif %}
+ </div>
+</div>
{% if rtl %}
{{ result_footer_rtl(result) }}
|