1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-24 23:13:33 +02:00
searxng/searx/templates/results.html
2013-10-15 00:02:55 +02:00

11 lines
263 B
HTML

{% 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 %}