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-14 23:09:13 +02:00

8 lines
146 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>searx</h1>
{% for result in results %}
<p>{{ result|safe }}</p>
{% endfor %}
{% endblock %}