diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-15 19:09:17 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-15 19:09:17 +0100 |
| commit | d740e7384a95c6a7d80e5f492f4dd7edb312175e (patch) | |
| tree | 9cf8a96ec7d0834603290dde93ef5f45a68ef08a /searx/templates/pix-art/search.html | |
| parent | 3ff269c84c936a3ffc2e8e3168a4ac017047015b (diff) | |
New Theme, Pix-art.
First commit
Diffstat (limited to 'searx/templates/pix-art/search.html')
| -rw-r--r-- | searx/templates/pix-art/search.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/templates/pix-art/search.html b/searx/templates/pix-art/search.html new file mode 100644 index 000000000..678ab11ed --- /dev/null +++ b/searx/templates/pix-art/search.html @@ -0,0 +1,9 @@ +<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form"> + <div id="search_wrapper"> + <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" size="100" {% if q %}value="{{ q }}"{% endif %}/> + <input type="submit" value="search" id="search_submit" /> + {% for category in categories %} + <input type="hidden" name="category_{{ category }}" value="1"/> + {% endfor %} + </div> +</form> |