diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-31 12:42:04 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-01 06:29:22 +0100 |
commit | 14338e2c3b796b9dfb74430751d75067018a70fd (patch) | |
tree | b2cf32f5c9269e3c16ce56372a9d5fc22838a257 /searx/templates/oscar | |
parent | c53c295573d6261be682cc506eefd5d8f0c04e07 (diff) | |
download | searxng-14338e2c3b796b9dfb74430751d75067018a70fd.tar.gz searxng-14338e2c3b796b9dfb74430751d75067018a70fd.zip |
[enh] generate navigation for help pages
Diffstat (limited to 'searx/templates/oscar')
-rw-r--r-- | searx/templates/oscar/help.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/templates/oscar/help.html b/searx/templates/oscar/help.html index 7865f6649..bf311fb4a 100644 --- a/searx/templates/oscar/help.html +++ b/searx/templates/oscar/help.html @@ -1,5 +1,12 @@ {% extends "oscar/base.html" %} {% block title %}{{ page.title }} - {% endblock %} {% block content %} +<ul class="nav nav-tabs"> +{% for name, page in all_pages %} + <li {% if name == page_filename %}class="active"{% endif %}> + <a href="{{name}}">{{page.title}}</a> + </li> +{% endfor %} +</ul> {{ page.content | safe }} {% endblock %} |