searxng/searx/templates/simple/index.html

13 lines
469 B
HTML
Raw Normal View History

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