diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-04-25 12:52:07 -0400 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-04-25 12:52:07 -0400 |
| commit | 952473d297b2f0131196086f5824ae48f32d2922 (patch) | |
| tree | f00e457ccc2546b9aec782ac80e2164ea325c93a /searx/templates/pix-art/index.html | |
| parent | 33516256fd60d5bf6dcdf38c8a31f4038ecf0524 (diff) | |
| parent | 5c63f2a80a749897b66604e43cc483306d263aeb (diff) | |
Merge pull request #246 from Cqoicebordel/pix-arts
New theme !
Diffstat (limited to 'searx/templates/pix-art/index.html')
| -rw-r--r-- | searx/templates/pix-art/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/pix-art/index.html b/searx/templates/pix-art/index.html new file mode 100644 index 000000000..d398cc829 --- /dev/null +++ b/searx/templates/pix-art/index.html @@ -0,0 +1,12 @@ +{% extends "pix-art/base.html" %} +{% block content %} +<div class="center"> + <div class="title"><h1><img src="{{ url_for('static', filename='img/searx-pixel.png') }}" alt="Searx Logo"/></h1></div> + {% include 'pix-art/search.html' %} + <p class="top_margin"> + <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a> + <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> + </p> +</div> +{% endblock %} + |