summaryrefslogtreecommitdiff
path: root/searx/templates/simple/help.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/simple/help.html')
-rw-r--r--searx/templates/simple/help.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/simple/help.html b/searx/templates/simple/help.html
new file mode 100644
index 000000000..5f571ae01
--- /dev/null
+++ b/searx/templates/simple/help.html
@@ -0,0 +1,12 @@
+{% extends 'simple/page_with_header.html' %}
+{% block title %}{{ page.title }} - {% endblock %}
+{% block content %}
+<ul class="tabs">
+{% for name, page in all_pages %}
+ <li>
+ <a href="{{name}}" {% if name == page_filename %}class="active"{% endif %}>{{page.title}}</a>
+ </li>
+{% endfor %}
+</ul>
+{{ page.content | safe }}
+{% endblock %}