1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-12 16:30:33 +02:00
searxng/searx/templates/results.html

11 lines
263 B
HTML
Raw Normal View History

2013-10-14 23:09:13 +02:00
{% extends "base.html" %}
{% block content %}
2013-10-15 00:02:55 +02:00
<form method="post" action="">
<input type="text" name="q" value="{{ q }}"/>
<input type="submit" value="search" />
</form>
2013-10-14 23:09:13 +02:00
{% for result in results %}
<p>{{ result|safe }}</p>
{% endfor %}
{% endblock %}