You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
searxng/searx/templates/results.html

8 lines
146 B
HTML

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