2017-02-12 15:06:01 +01:00
|
|
|
{% extends "simple/base.html" %}
|
2021-11-13 10:42:07 +01:00
|
|
|
{% from 'simple/icons.html' import icon_big %}
|
2017-02-12 15:06:01 +01:00
|
|
|
{% block meta %}
|
2021-10-28 21:02:39 +02:00
|
|
|
<link rel="preload" href="{{ url_for('static', filename='img/searxng.png') }}" as="image" />
|
2017-02-12 15:06:01 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
2021-11-13 10:42:07 +01:00
|
|
|
<nav id="linkto_preferences"><a href="{{ url_for('preferences') }}">{{ icon_big('menu-outline') }}</a></nav>
|
2017-02-12 15:06:01 +01:00
|
|
|
<div class="index">
|
2021-10-28 21:02:39 +02:00
|
|
|
<div class="title"><h1>SearXNG</h1></div>
|
2021-09-21 00:10:12 +02:00
|
|
|
{% include 'simple/simple_search.html' %}
|
2017-02-12 15:06:01 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|