diff options
| author | Martin Fischer <martin@push-f.com> | 2022-01-15 09:34:08 +0100 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2022-01-23 08:01:55 +0100 |
| commit | 105c5a6a9839c65a81b32cdf82278c5cc629ae4a (patch) | |
| tree | 19a98367914435850612798dadbee48f5a289886 /searx/templates/simple/about.html | |
| parent | 284ac8bfd8a3d1f762c98a0195b98a45cdd089d3 (diff) | |
[help] stop rendering documentation with Jinja2
To facilitate translation of the user documentation we move
the templating logic outside of the user documentation.
Diffstat (limited to 'searx/templates/simple/about.html')
| -rw-r--r-- | searx/templates/simple/about.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/templates/simple/about.html b/searx/templates/simple/about.html index a59699367..9f6a10ced 100644 --- a/searx/templates/simple/about.html +++ b/searx/templates/simple/about.html @@ -1,4 +1,5 @@ {% extends 'simple/base.html' %} {% block content %} {{ help.about | safe }} +{% include "__common__/aboutextend.html" ignore missing %} {% endblock %} |