diff options
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/results.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/results.html b/searx/templates/results.html index fc935c37d..40c20325c 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -1,13 +1,13 @@ {% extends "base.html" %} {% block head %} {% endblock %} {% block content %} -<div class="right"> - <a href="/" title="searx" class="site_link">searx</a> | Number of results: {{ number_of_results }} -</div> <div class="small"> {% include 'search.html' %} </div> <div id="results"> +<div> + Number of results: {{ number_of_results }} +</div> {% for result in results %} {% if result['template'] %} {% include 'result_templates/'+result['template'] %} |