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.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/templates/simple/help.html b/searx/templates/simple/help.html
index 0be59f495..5f571ae01 100644
--- a/searx/templates/simple/help.html
+++ b/searx/templates/simple/help.html
@@ -1,5 +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 %}