summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/index.html
blob: 0d34e1cf65dfcd5b49168a7f1cde87d840d30087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "courgette/base.html" %}
{% block content %}
{% include 'courgette/github_ribbon.html' %}
<div class="center">
    <div class="title"><h1>searx</h1></div>
    {% include 'courgette/search.html' %}
    <p class="top_margin">
    	{% if rtl %}
    	<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
    	{% endif %}
        <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
        {% if not rtl %}
        <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
        {% endif %}
    </p>
</div>
{% endblock %}