diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-10-14 23:09:13 +0200 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-10-14 23:09:13 +0200 |
| commit | ae9fb1d7dccf061032b5d4b167086838feb1463d (patch) | |
| tree | 76cc836e07f9e14fd9f661660ea96bafcf92fa9c /searx/templates/results.html | |
[enh] initial commit
Diffstat (limited to 'searx/templates/results.html')
| -rw-r--r-- | searx/templates/results.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/templates/results.html b/searx/templates/results.html new file mode 100644 index 000000000..c7851461a --- /dev/null +++ b/searx/templates/results.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} +{% block content %} +<h1>searx</h1> +{% for result in results %} + <p>{{ result|safe }}</p> +{% endfor %} +{% endblock %} |