diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-09-27 10:23:05 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 14:40:46 +0200 |
| commit | a538bed745a688d17c98372785dd2c0644e6019b (patch) | |
| tree | 554785c22fb9e14227a4ba487bf5cce04db6abe8 /searx/templates/oscar/index.html | |
| parent | ef1ead9c4bfb6a68cc6c0f8727c4af8d99206eb8 (diff) | |
oscar template: implement search input, index page,...
Diffstat (limited to 'searx/templates/oscar/index.html')
| -rw-r--r-- | searx/templates/oscar/index.html | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/searx/templates/oscar/index.html b/searx/templates/oscar/index.html index 0c9a73060..adb535d9b 100644 --- a/searx/templates/oscar/index.html +++ b/searx/templates/oscar/index.html @@ -1,6 +1,15 @@ {% extends "oscar/base.html" %} {% block content %} -<div class="center"> - <div class="title"><h1>searx</h1></div> +<div class="container-fluid"> + <div class="row"> + <div class="text-center col-sm-12 col-md-12"> + <h1 class="text-hide center-block"><img class="center-block img-responsive" src="{{ url_for('static', filename='img/searx_logo.png') }}" alt="searx logo"/>searx</h1> + </div> + </div> + <div class="row"> + <div class="text-center col-sm-12 col-md-12"> + {% include 'oscar/search.html' %} + </div> + </div> </div> {% endblock %} |