1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-25 15:30:20 +02:00
searxng/searx/templates/simple/index.html
2021-10-29 20:24:04 +02:00

13 lines
463 B
HTML

{% extends "simple/base.html" %}
{% from 'simple/macros.html' import icon %}
{% block meta %}
<link rel="preload" href="{{ url_for('static', filename='img/searxng.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>SearXNG</h1></div>
{% include 'simple/simple_search.html' %}
</div>
{% endblock %}