summaryrefslogtreecommitdiff
path: root/searx/templates/results.html
blob: 105624034d0de3f5218d69a0787064932c16e18f (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block content %}
<form method="post" action="">
    <input type="text" name="q" value="{{ q }}"/>
    <input type="submit" value="search" />
</form>
{% for result in results %}
    <p>{{ result|safe }}</p>
{% endfor %}
{% endblock %}