1
0
mirror of https://github.com/searxng/searxng.git synced 2024-07-16 06:10:12 +02:00
searxng/searx/templates/results.html

20 lines
555 B
HTML
Raw Normal View History

2013-10-14 23:09:13 +02:00
{% extends "base.html" %}
2013-10-19 23:25:37 +02:00
{% block head %} {% endblock %}
2013-10-14 23:09:13 +02:00
{% block content %}
2013-10-19 22:35:53 +02:00
<div class="right">
<a href="/" title="searx" class="site_link">searx</a> | Number of results: {{ number_of_results }}
</div>
<div class="small">
{% include 'search.html' %}
</div>
2013-10-19 18:29:17 +02:00
<div id="results">
{% for result in results %}
2013-10-22 23:32:52 +02:00
{% if result['template'] %}
{% include 'result_templates/'+result['template'] %}
{% else %}
{% include 'result_templates/default.html' %}
{% endif %}
2013-10-19 18:29:17 +02:00
{% endfor %}
</div>
2013-10-14 23:09:13 +02:00
{% endblock %}