diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-10-22 23:33:18 +0200 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-10-22 23:33:18 +0200 |
| commit | 31471ed93647cbd38e83504c69aa298a40202465 (patch) | |
| tree | 70c47fb4c736d0806975b2de316b61cb480c2427 | |
| parent | fd0a93dd7ce6b701dfb5fe48d3196aee23d19621 (diff) | |
[enh] image result template added
| -rw-r--r-- | searx/templates/result_templates/images.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/searx/templates/result_templates/images.html b/searx/templates/result_templates/images.html new file mode 100644 index 000000000..446bbfef5 --- /dev/null +++ b/searx/templates/result_templates/images.html @@ -0,0 +1,8 @@ +<div class="image_result"> + <p> + <span class="engines">{{ result.engine }}</span><br /> + <a href="{{ result.img_src }}"><img src="{{ result.img_src }}" title={{ result.title }}/></a> + <br /> + <span class="url"><a href="{{ result.url }}" class="small_font">original context</a></span> + </p> +</div> |