summaryrefslogtreecommitdiff
path: root/searx/templates/simple/index.html
blob: afa62be139fa49851ce7be44c8f09f68a7f46962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "simple/base.html" %}
{% from 'simple/macros.html' import icon %}
{% block meta %}
	<link rel="preload" href="{{ url_for('static', filename='img/searx.png') }}" as="image" />
{% endblock %}
{% block content %}
<nav id="linkto_preferences"><a href="{{ url_for('preferences') }}">{{ icon('navicon-round') }}</a></nav>
<div class="index">
    <div class="title"><h1>searx</h1></div>
    {% include 'simple/simple_search.html' %}
</div>
{% endblock %}