summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/search.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
committerAdam Tauber <asciimoo@gmail.com>2016-09-22 23:51:07 +0200
commitbee7b497a300622f5ba2b619817f5c89c29ae871 (patch)
tree525c3d85020cedd88663a4bb4a0e18c54500044b /searx/templates/legacy/search.html
parentaaf5d506e51197603922d7b9d259c0f4e498f62b (diff)
[mod] rename "default" theme to "legacy"
Diffstat (limited to 'searx/templates/legacy/search.html')
-rw-r--r--searx/templates/legacy/search.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/searx/templates/legacy/search.html b/searx/templates/legacy/search.html
new file mode 100644
index 000000000..4d37f9ba1
--- /dev/null
+++ b/searx/templates/legacy/search.html
@@ -0,0 +1,8 @@
+<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" autocomplete="off" size="100" {% if q %}value="{{ q }}"{% endif %}/>
+ <input type="submit" value="search" id="search_submit" />
+ </div>
+ {% set display_tooltip = true %}
+ {% include 'legacy/categories.html' %}
+</form>