diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-12-12 22:37:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-12 22:37:10 +0100 |
| commit | e276d9ba3e5ac4d25f560afef13607fc47152382 (patch) | |
| tree | c3a36af514a2797b5e6d70a60b32f1acfb7dbec5 /searx/templates/simple/base.html | |
| parent | 88f2c6dc96fea6c8fe31af14184ffa773c74cdb2 (diff) | |
| parent | e31409daf777a622b5fafb3c22e62525141439f2 (diff) | |
Merge pull request #1111 from kvch/searx-links-in-footer
Add links to footers of oscar and simple
Diffstat (limited to 'searx/templates/simple/base.html')
| -rw-r--r-- | searx/templates/simple/base.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html index 0003f113e..f0dea57bb 100644 --- a/searx/templates/simple/base.html +++ b/searx/templates/simple/base.html @@ -52,7 +52,12 @@ {% endblock %} </main> <footer> - <p>{{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}</p> + <p> + {{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> + <a href="https://github.com/asciimoo/searx">{{ _('Source code') }}</a> | + <a href="https://github.com/asciimoo/searx/issues">{{ _('Issue tracker') }}</a> | + <a href="https://github.com/asciimoo/searx/wiki/Searx-instances">{{ _('Public instances') }}</a> + </p> </footer> <!--[if gte IE 9]>--> <script src="{{ url_for('static', filename='js/searx.min.js') }}" ></script> |