浏览代码

[enh] about page updates

asciimoo 11 年前
父节点
当前提交
be42683cbc
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      searx/templates/about.html

+ 4
- 2
searx/templates/about.html 查看文件

4
 <div class="row">
4
 <div class="row">
5
     <h1>About <a href="/">searx</a></h1>
5
     <h1>About <a href="/">searx</a></h1>
6
 
6
 
7
-    <p>Searx is a meta-search engine inspired by the seeks-project.
7
+    <p>Searx is a meta-search engine inspired by the <a href="http://seeks-project.info/">seeks-project</a>.
8
     <br />You can add it to your browsers search bar and even make it your default search engine.
8
     <br />You can add it to your browsers search bar and even make it your default search engine.
9
     <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>
9
     <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>
10
     <p>Please add more engines to this list, pull requests are welcome!</p>
10
     <p>Please add more engines to this list, pull requests are welcome!</p>
15
     <h3>{{ categ.capitalize() }} category</h3>
15
     <h3>{{ categ.capitalize() }} category</h3>
16
     <ul>
16
     <ul>
17
         {% for search_engine in search_engines %}
17
         {% for search_engine in search_engines %}
18
-        <li>{{ search_engine.name }}</li>
18
+            {% if not search_engine.private %}
19
+                <li>{{ search_engine.name }}</li>
20
+            {% endif %}
19
         {% endfor %}
21
         {% endfor %}
20
     </ul>
22
     </ul>
21
 {% endfor %}
23
 {% endfor %}