2015-01-15 23:56:54 +00:00
|
|
|
{% extends "courgette/base.html" %}
|
2014-08-18 08:44:46 +00:00
|
|
|
{% block content %}
|
2015-01-15 23:56:54 +00:00
|
|
|
{% include 'courgette/github_ribbon.html' %}
|
2014-08-18 08:44:46 +00:00
|
|
|
<div class="center">
|
|
|
|
<div class="title"><h1>searx</h1></div>
|
2015-01-15 23:56:54 +00:00
|
|
|
{% include 'courgette/search.html' %}
|
2014-08-18 08:44:46 +00:00
|
|
|
<p class="top_margin">
|
2015-02-10 14:23:56 +00:00
|
|
|
{% if rtl %}
|
|
|
|
<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
|
|
|
|
{% endif %}
|
2014-08-18 08:44:46 +00:00
|
|
|
<a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
|
2015-02-10 14:23:56 +00:00
|
|
|
{% if not rtl %}
|
2014-08-18 08:44:46 +00:00
|
|
|
<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
|
2015-02-10 14:23:56 +00:00
|
|
|
{% endif %}
|
2014-08-18 08:44:46 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2015-01-15 23:56:54 +00:00
|
|
|
{% endblock %}
|