summaryrefslogtreecommitdiff
path: root/searx/templates/default/result_templates/map.html
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-15 01:48:46 +0100
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-15 01:48:46 +0100
commit389fc3b8b27e52a0959c4008ad303337f1c3c827 (patch)
treea2e20ff4a218f3543356759f84a99b512ba77091 /searx/templates/default/result_templates/map.html
parent08df681b48aa32abfcf7420be30c669684dbc57e (diff)
Few fixes
- Whitespaces - Change a few <p> in <span> - Add RSS to allow browser detection - A few UIUX changes - Add a few more allowed translations
Diffstat (limited to 'searx/templates/default/result_templates/map.html')
-rw-r--r--searx/templates/default/result_templates/map.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/searx/templates/default/result_templates/map.html b/searx/templates/default/result_templates/map.html
index d37c2f374..59885a58c 100644
--- a/searx/templates/default/result_templates/map.html
+++ b/searx/templates/default/result_templates/map.html
@@ -1,13 +1,13 @@
<div class="result {{ result.class }}">
- {% if "icon_"~result.engine~".ico" in favicons %}
+ {% if "icon_"~result.engine~".ico" in favicons %}
<img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
- {% endif %}
+ {% endif %}
- <div>
- <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
- <p class="url">{{ result.pretty_url }} <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">cached</a></p>
- {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
- <p class="content">{% if result.img_src %}<img src="{{ result.img_src }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p>
- </div>
+ <div>
+ <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
+ <p class="url">{{ result.pretty_url }} <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">cached</a>
+ {% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span>{% endif %}</p>
+ <p class="content">{% if result.img_src %}<img src="{{ result.img_src }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p>
+ </div>
</div>