summaryrefslogtreecommitdiff
path: root/searx/templates/about.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-10-21 00:28:48 +0200
committerasciimoo <asciimoo@gmail.com>2013-10-21 00:28:48 +0200
commit9ead6546a431f78e887c47f130be54a4893d2a1f (patch)
treef1dec6e0a0e27cae3773c0f320d02f6ac36426ee /searx/templates/about.html
parent0b28f3fe6a0faf76783a0cf63b41773db27d61d6 (diff)
downloadsearxng-9ead6546a431f78e887c47f130be54a4893d2a1f.tar.gz
searxng-9ead6546a431f78e887c47f130be54a4893d2a1f.zip
[enh] about page added
Diffstat (limited to 'searx/templates/about.html')
-rw-r--r--searx/templates/about.html58
1 files changed, 19 insertions, 39 deletions
diff --git a/searx/templates/about.html b/searx/templates/about.html
index ae33f93e5..14679bddf 100644
--- a/searx/templates/about.html
+++ b/searx/templates/about.html
@@ -1,47 +1,27 @@
-<h1>About searx</h1>
+{% extends 'base.html' %}
+{% block content %}
+{% include 'header.html' %}
+<div class="row">
+ <h1>About <a href="/">searx</a></h1>
-<p>searx is a meta-search engine inspired by the seeks-project. You can add it to your browsers search bar and even make it your default search engine. It tries to provide basic privacy by mixing your queries with queries from others while avoiding logging of queries. 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 chrome users there is an exception searx is used from the search bar, it issues GET requests.</p>
-
-<h2>FAQ</h2>
-<h3>Trust</h3>
-<p>It's ok if you don't trust us regarding the logs, <a href="https://github.com/asciimoo/searx">take the code</a> and run it yourself for your friends! decentralize!</p>
+ <p>searx is a meta-search engine inspired by the seeks-project.<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 queries from others while avoiding logging of queries. 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 chrome users there is an exception searx is used from the search bar, it issues GET requests.</p>
<h2>Supported engines</h2>
-<h3>General Category</h3>
-<ul>
-<li>duckduckgo definitions</li>
-<li>duckduckgo</li>
-<li>startpage</li>
-<li>wikipedia</li>
-</ul>
-
-<h3>Images Category</h3>
-<ul>
-<li>flickr</li>
-<li>gimages</li>
-<li>deviantart</li>
-</ul>
+{% for (categ,search_engines) in categs %}
+ <h3>{{ categ.capitalize() }} category</h3>
+ <ul>
+ {% for search_engine in search_engines %}
+ <li>{{ search_engine.name }}</li>
+ {% endfor %}
+ </ul>
+{% endfor %}
-<h3>Sound Category</h3>
-<ul>
-<li>soundcloud</li>
-</ul>
-
-<h3>Video Category</h3>
-<ul>
-<li>youtube</li>
-</ul>
-
-<h3>IT Category</h3>
-<ul>
-<li>stackoverflow</li>
-<li>github</li>
-</ul>
+<h2>FAQ</h2>
+<h3>Trust</h3>
+<p>It's ok if you don't trust us regarding the logs, <a href="https://github.com/asciimoo/searx">take the code</a> and run it yourself for your friends! decentralize!</p>
-<h3>Social media Category</h3>
-<ul>
-<li>twitter</li>
-</ul>
<p>please add more engines to this list, pull request are welcome!</p>
+</div>
+{% endblock %}