mirror of https://github.com/searxng/searxng.git
13 lines
424 B
HTML
13 lines
424 B
HTML
|
{% extends "default/base.html" %}
|
||
|
{% block content %}
|
||
|
{% include 'default/github_ribbon.html' %}
|
||
|
<div class="center">
|
||
|
<div class="title"><h1>searx</h1></div>
|
||
|
{% include 'default/search.html' %}
|
||
|
<p class="top_margin">
|
||
|
<a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
|
||
|
<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
|
||
|
</p>
|
||
|
</div>
|
||
|
{% endblock %}
|