Browse Source

Merge pull request #1111 from kvch/searx-links-in-footer

Add links to footers of oscar and simple
Adam Tauber 7 years ago
parent
commit
e276d9ba3e
2 changed files with 14 additions and 2 deletions
  1. 8 1
      searx/templates/oscar/base.html
  2. 6 1
      searx/templates/simple/base.html

+ 8 - 1
searx/templates/oscar/base.html

@@ -87,7 +87,14 @@
         <div class="container">
             {% block footer %}
             {% endblock %}
-            <p class="text-muted"><small>{{ _('Powered by') }} <a href="https://asciimoo.github.io/searx/">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}</small></p>
+            <p class="text-muted">
+                <small>
+                    {{ _('Powered by') }} <a href="https://asciimoo.github.io/searx/">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>
+                </small>
+            </p>
         </div>
     </div>
     <script src="{{ url_for('static', filename='js/jquery-1.11.1.min.js') }}"></script>

+ 6 - 1
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>