diff options
| author | dalf <alex@al-f.net> | 2014-10-26 11:14:05 +0100 |
|---|---|---|
| committer | dalf <alex@al-f.net> | 2014-10-26 11:14:05 +0100 |
| commit | a71b326d9e210da2d4ed67fade819c0433fb95d3 (patch) | |
| tree | db1803ef0a91a4c90d655ea1f909b7c922c66c8d /searx/templates/default/index.html | |
| parent | be4d219ae73240337fa25c8833b5fd91ddc1272b (diff) | |
[mod] default template modifications
- more smartphone friendly
- more text browser friendly
- next button always on the right
- in case of small screen supporting touch event, categories are displayed on one line with a scroll
Diffstat (limited to 'searx/templates/default/index.html')
| -rw-r--r-- | searx/templates/default/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/templates/default/index.html b/searx/templates/default/index.html index b4f55608b..72fbec8ca 100644 --- a/searx/templates/default/index.html +++ b/searx/templates/default/index.html @@ -1,6 +1,5 @@ {% extends "default/base.html" %} {% block content %} -{% include 'default/github_ribbon.html' %} <div class="center"> <div class="title"><h1>searx</h1></div> {% include 'default/search.html' %} @@ -9,4 +8,6 @@ <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a> </p> </div> +{% include 'default/github_ribbon.html' %} {% endblock %} + |