mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	 2e7723a6c1
			
		
	
	
		2e7723a6c1
		
	
	
	
	
		
			
			* highlight parts of result * add link to archiv.to * fix little bugs * add little icons * change style of "show map" button
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% from 'oscar/macros.html' import icon %}
 | |
| 
 | |
| <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>
 | |
| 
 | |
| {% 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 %}
 | |
|    
 | |
| {% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
 | |
| 
 | |
| {% if (result.latitude and result.longitude) or result.boundingbox %}
 | |
|     <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>
 |