1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-13 08:40:16 +02:00
searxng/searx/templates/simple/index.html

13 lines
463 B
HTML
Raw Normal View History

2017-02-12 15:06:01 +01:00
{% extends "simple/base.html" %}
{% from 'simple/macros.html' import icon %}
{% 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 %}
<nav id="linkto_preferences"><a href="{{ url_for('preferences') }}">{{ icon('navicon-round') }}</a></nav>
<div class="index">
2021-10-28 21:02:39 +02:00
<div class="title"><h1>SearXNG</h1></div>
{% include 'simple/simple_search.html' %}
2017-02-12 15:06:01 +01:00
</div>
{% endblock %}