diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-31 11:50:20 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-01-31 11:57:24 +0100 |
commit | e7c0f4e877dc90fc44989a304b555a8b6f1f6665 (patch) | |
tree | 918c4a6b23e238c4a77a3cc4402bcb5aa5dc2b5d /searx/templates/simple/base.html | |
parent | c82b9c68d282a2f674632ce0e0720da85c64a1c4 (diff) | |
download | searxng-e7c0f4e877dc90fc44989a304b555a8b6f1f6665.tar.gz searxng-e7c0f4e877dc90fc44989a304b555a8b6f1f6665.zip |
[simple] link preferences on /about and /stats
We want to link the preferences from every page
(except of course the preferences page).
Diffstat (limited to 'searx/templates/simple/base.html')
-rw-r--r-- | searx/templates/simple/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html index 548710310..2bb7d8b2a 100644 --- a/searx/templates/simple/base.html +++ b/searx/templates/simple/base.html @@ -47,6 +47,10 @@ </div> {% endif %} + {% block linkto_preferences %} + {% from 'simple/icons.html' import icon_big %} + <nav id="linkto_preferences"><a href="{{ url_for('preferences') }}">{{ icon_big('menu-outline') }}</a></nav> + {% endblock %} {% block header %} {% endblock %} {% block content %} |