summaryrefslogtreecommitdiff
path: root/searx/templates/simple/help.html
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2022-03-13 23:12:46 +0100
committerGitHub <noreply@github.com>2022-03-13 23:12:46 +0100
commitcd92a7eacdd6b4c333e57111e1503b8455628067 (patch)
treea2f72a42d2024c1f612bee5f9058920c643e6878 /searx/templates/simple/help.html
parente847313007aa3a61c26acda122bb183df1df76a7 (diff)
parent1157462ff9fc08504297e259356ccbefb339965f (diff)
Merge pull request #930 from return42/merge-user-doc2
Integrate the user documentation into the application
Diffstat (limited to 'searx/templates/simple/help.html')
-rw-r--r--searx/templates/simple/help.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/searx/templates/simple/help.html b/searx/templates/simple/help.html
deleted file mode 100644
index 5f571ae01..000000000
--- a/searx/templates/simple/help.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% 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 %}