1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/templates/default/index.html

19 lines
590 B
HTML
Raw Normal View History

2014-12-01 12:26:38 +01:00
{% extends "default/base.html" %}
{% block content %}
<div class="center">
<div class="title"><h1>searx</h1></div>
{% include 'default/search.html' %}
<p class="top_margin">
2015-02-17 12:45:54 +01:00
{% if rtl %}
<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
{% endif %}
2014-12-01 12:26:38 +01:00
<a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
2015-02-17 12:45:54 +01:00
{% if not rtl %}
2014-12-01 12:26:38 +01:00
<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
2015-02-17 12:45:54 +01:00
{% endif %}
2014-12-01 12:26:38 +01:00
</p>
</div>
{% include 'default/github_ribbon.html' %}
{% endblock %}