mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
11 lines
263 B
HTML
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 %}
|