blob: fc935c37d00af32c24354fc6860fef53dcd250d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block head %} {% endblock %}
{% block content %}
<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>
<div id="results">
{% for result in results %}
{% if result['template'] %}
{% include 'result_templates/'+result['template'] %}
{% else %}
{% include 'result_templates/default.html' %}
{% endif %}
{% endfor %}
</div>
{% endblock %}
|