mirror of https://github.com/searxng/searxng.git
17 lines
594 B
HTML
17 lines
594 B
HTML
{% 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 %} |