2014-11-03 09:39:47 +00:00
|
|
|
{% from 'oscar/macros.html' import icon %}
|
2014-11-02 12:00:28 +00:00
|
|
|
|
2014-11-03 09:39:47 +00:00
|
|
|
<h4 class="result_header">{% if result['favicon'] %}<img width="32" height="32" class="favicon" src="static/{{ theme }}/img/icons/{{ result['favicon'] }}.png" /> {% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h4>
|
2014-11-02 12:00:28 +00:00
|
|
|
|
2014-11-03 09:39:47 +00:00
|
|
|
{% if result.publishedDate %}<time class="text-muted" datetime="{{ result.publishedDate }}" pubdate>{{ result.publishedDate }}</time>{% endif %}
|
|
|
|
<small><a class="text-info" href="https://web.archive.org/web/{{ result.pretty_url }}">{{ icon('link') }} {{ _('cached') }}</a></small>
|
|
|
|
{% if (result.latitude and result.longitude) or result.boundingbox %}
|
|
|
|
<small> • <a class="text-info btn-collapse collapsed searx_init_map cursor-pointer" data-toggle="collapse" data-target="#result-map-{{ index }}" data-leaflet-target="osm-map-{{ index }}" data-map-lon="{{ result.longitude }}" data-map-lat="{{ result.latitude }}" {% if result.boundingbox %}data-map-boundingbox='{{ result.boundingbox|tojson|safe }}'{% endif %} {% if result.geojson %}data-map-geojson='{{ result.geojson|tojson|safe }}'{% endif %} data-btn-text-collapsed="{{ _('show map') }}" data-btn-text-not-collapsed="{{ _('hide map') }}">{{ icon('globe') }} {{ _('show map') }}</a></small>
|
|
|
|
{% endif %}
|
2014-11-03 17:46:58 +00:00
|
|
|
|
|
|
|
{% if result.address %}
|
|
|
|
<p class="result-content result-adress" itemscope itemtype="http://schema.org/PostalAddress">
|
|
|
|
{% if result.address.name %}
|
|
|
|
<strong itemprop="name">{{ result.address.name }}</strong><br/>
|
|
|
|
{% endif %}
|
|
|
|
{% if result.address.road %}
|
|
|
|
<span itemprop="streetAddress">
|
|
|
|
{% if result.address.house_number %}{{ result.address.house_number }}, {% endif %}
|
|
|
|
{{ result.address.road }}
|
|
|
|
</span><br/>
|
|
|
|
{% endif %}
|
|
|
|
{% if result.address.locality %}
|
2014-11-04 11:58:12 +00:00
|
|
|
<span itemprop="addressLocality">{{ result.address.locality }}</span>
|
|
|
|
{% if result.address.postcode %}, <span itemprop="postalCode">{{ result.address.postcode }}</span>{% endif %}
|
2014-11-03 17:46:58 +00:00
|
|
|
<br/>
|
|
|
|
{% endif %}
|
|
|
|
{% if result.address.country %}
|
|
|
|
<span itemprop="addressCountry">{{ result.address.country }}</span>
|
|
|
|
{% endif %}
|
|
|
|
</p><div class="clearfix"></div>
|
|
|
|
{% endif %}
|
|
|
|
|
2014-11-03 09:39:47 +00:00
|
|
|
{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
|
2014-11-02 12:00:28 +00:00
|
|
|
|
2014-11-03 09:39:47 +00:00
|
|
|
{% if (result.latitude and result.longitude) or result.boundingbox %}
|
2014-11-02 12:00:28 +00:00
|
|
|
<div class="collapse" id="result-map-{{ index }}">
|
|
|
|
<div style="height:300px; width:100%; margin: 10px 0;" id="osm-map-{{ index }}"></div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
|
|
|
<span class="label label-default pull-right">{{ result.engine }}</span>
|
|
|
|
<p class="text-muted">{{ result.pretty_url }}</p>
|