1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-13 00:36:39 +02:00
searxng/searx/templates/results.html

20 lines
485 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 %}
<div class="small">
{% include 'search.html' %}
</div>
2013-10-19 18:29:17 +02:00
<div id="results">
2013-11-01 19:04:48 +01:00
<div>
Number of results: {{ number_of_results }}
</div>
2013-10-19 18:29:17 +02:00
{% 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 %}