libremiami-search/searx/templates/about.html

30 lines
1.4 KiB
HTML
Raw Normal View History

2013-10-21 00:28:48 +02:00
{% extends 'base.html' %}
{% block content %}
<div class="row">
<h1>About <a href="/">searx</a></h1>
2013-10-20 23:57:34 +02:00
2013-10-21 00:28:48 +02:00
<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>
2013-10-21 00:42:07 +02:00
<p>please add more engines to this list, pull request are welcome!</p>
2013-10-20 23:57:34 +02:00
<h2>Supported engines</h2>
2013-10-21 00:28:48 +02:00
{% 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 %}
2013-10-20 23:57:34 +02:00
2013-10-21 00:28:48 +02:00
<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>Firefox engines plz?</h3>
<p><a href="#" onclick="window.external.AddSearchProvider(window.location.protocol + '//' + window.location.host + '/opensearch.xml')">
Install</a> searx as a search engine on any Firefox!</p>
2013-10-20 23:57:34 +02:00
2013-10-21 00:28:48 +02:00
</div>
{% endblock %}