diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-15 01:48:46 +0100 |
| commit | 389fc3b8b27e52a0959c4008ad303337f1c3c827 (patch) | |
| tree | a2e20ff4a218f3543356759f84a99b512ba77091 /searx/templates/default/search.html | |
| parent | 08df681b48aa32abfcf7420be30c669684dbc57e (diff) | |
Few fixes
- Whitespaces
- Change a few <p> in <span>
- Add RSS to allow browser detection
- A few UIUX changes
- Add a few more allowed translations
Diffstat (limited to 'searx/templates/default/search.html')
| -rw-r--r-- | searx/templates/default/search.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/searx/templates/default/search.html b/searx/templates/default/search.html index 75cfa41d6..5a049a492 100644 --- a/searx/templates/default/search.html +++ b/searx/templates/default/search.html @@ -1,7 +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> - {% include 'default/categories.html' %} + <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 'default/categories.html' %} </form> |