summaryrefslogtreecommitdiff
path: root/searx/templates/about.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-10-26 20:54:06 +0200
committerasciimoo <asciimoo@gmail.com>2013-10-26 20:54:06 +0200
commitbe42683cbcc266af498a30abd87ff22ba228b9ba (patch)
tree6f51e09717a391ad1b79c2cad3a8a974cd63ccc4 /searx/templates/about.html
parent09e7353307c918a1c08513114faaf691d271a9b7 (diff)
downloadsearxng-be42683cbcc266af498a30abd87ff22ba228b9ba.tar.gz
searxng-be42683cbcc266af498a30abd87ff22ba228b9ba.zip
[enh] about page updates
Diffstat (limited to 'searx/templates/about.html')
-rw-r--r--searx/templates/about.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/searx/templates/about.html b/searx/templates/about.html
index fea7b678f..b6be6f2a7 100644
--- a/searx/templates/about.html
+++ b/searx/templates/about.html
@@ -4,7 +4,7 @@
<div class="row">
<h1>About <a href="/">searx</a></h1>
- <p>Searx is a meta-search engine inspired by the seeks-project.
+ <p>Searx is a meta-search engine inspired by the <a href="http://seeks-project.info/">seeks-project</a>.
<br />You can add it to your browsers search bar and even make it your default search engine.
<br />It tries to provide basic privacy by mixing your queries with those from others while avoiding logging. For all browsers (except chrom*) queries are made using a POST request. Thus they don't show up in our logs, nor in your url history. For Chrom* users there is an exception, searx is used from the search bar, it issues GET requests.</p>
<p>Please add more engines to this list, pull requests are welcome!</p>
@@ -15,7 +15,9 @@
<h3>{{ categ.capitalize() }} category</h3>
<ul>
{% for search_engine in search_engines %}
- <li>{{ search_engine.name }}</li>
+ {% if not search_engine.private %}
+ <li>{{ search_engine.name }}</li>
+ {% endif %}
{% endfor %}
</ul>
{% endfor %}