diff options
author | Alexandre Flament <alex@al-f.net> | 2017-02-12 15:06:01 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2017-08-06 16:04:21 +0200 |
commit | 10a24bdc2c3870f07ec62dd710841628d325aaf6 (patch) | |
tree | 400b579adb6268092f21ec21621a16c730cfef41 /searx/templates/simple/index.html | |
parent | 4f6586d8085460c368ad16904685199de630e1c8 (diff) | |
download | searxng-10a24bdc2c3870f07ec62dd710841628d325aaf6.tar.gz searxng-10a24bdc2c3870f07ec62dd710841628d325aaf6.zip |
[enh] add simple theme (WIP)
Diffstat (limited to 'searx/templates/simple/index.html')
-rw-r--r-- | searx/templates/simple/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/simple/index.html b/searx/templates/simple/index.html new file mode 100644 index 000000000..4e8e76cce --- /dev/null +++ b/searx/templates/simple/index.html @@ -0,0 +1,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/search.html' %} +</div> +{% endblock %} |