mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 12:50:11 +01:00
8 lines
146 B
HTML
8 lines
146 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<h1>searx</h1>
|
||
|
{% for result in results %}
|
||
|
<p>{{ result|safe }}</p>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|