diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-25 12:04:39 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-25 12:07:57 +0100 |
| commit | 8fbffb1409b91a76fb4228456442b661e43caa72 (patch) | |
| tree | b86af1380185f9bd961d1ce11bb42d42d881b5fd /searx/templates/simple/infobox.html | |
| parent | bd285de48a7db9f67c9e5dd50aba8742f552a245 (diff) | |
[fix] simple-theme templates: polish HTML <img> elements
- <img> [1] element does not have an end tag, no need for a leading `/>`
- add global attribute title[2] to result_templates/images.html (result-images-source)
- in jinja macro 'macro result_header' remove duplicate of class="image"
- in jinja macro 'macro result_header' remove alt attribute (fix [3])::
alt="{{ result.title|striptags }}"
the result.title is already shown in::
<h3>{{ result_link(result.url, result.title|safe) }}</h3>
[1] https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
[2] https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes#attr-title
[3] https://github.com/searxng/searxng/issues/523
Closes: https://github.com/searxng/searxng/issues/523
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/templates/simple/infobox.html')
| -rw-r--r-- | searx/templates/simple/infobox.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/searx/templates/simple/infobox.html b/searx/templates/simple/infobox.html index 56c51af77..24e0920b3 100644 --- a/searx/templates/simple/infobox.html +++ b/searx/templates/simple/infobox.html @@ -1,6 +1,6 @@ <aside class="infobox"> <h2><bdi>{{ infobox.infobox }}</bdi></h2> - {% if infobox.img_src %}<img src="{{ image_proxify(infobox.img_src) }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}" />{% endif %} + {% if infobox.img_src %}<img src="{{ image_proxify(infobox.img_src) }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}">{%- endif -%} <p><bdi>{{ infobox.content | safe }}</bdi></p> {% if infobox.attributes %} <div class="attributes"> @@ -8,15 +8,15 @@ <dl> <dt><bdi>{{ attribute.label }} :</bdi></dt> {%- if attribute.image -%} - <dd><img src="{{ image_proxify(attribute.image.src) }}" alt="{{ attribute.image.alt }}" /></dd> + <dd><img src="{{ image_proxify(attribute.image.src) }}" alt="{{ attribute.image.alt }}"></dd> {%- else -%} <dd><bdi>{{ attribute.value }}</bdi></dd> {%- endif -%} </dl> - {% endfor %} + {% endfor %} </div> {% endif %} - + {% if infobox.urls %} <div class="urls"> <ul> |