You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
searxng/searx/templates/results.html

20 lines
485 B
HTML

{% extends "base.html" %}
{% block head %} {% endblock %}
{% block content %}
<div class="small">
{% include 'search.html' %}
</div>
<div id="results">
<div>
Number of results: {{ number_of_results }}
</div>
{% for result in results %}
{% if result['template'] %}
{% include 'result_templates/'+result['template'] %}
{% else %}
{% include 'result_templates/default.html' %}
{% endif %}
{% endfor %}
</div>
{% endblock %}