diff options
author | Hypolite Petovan <mrpetovan@gmail.com> | 2017-10-18 23:45:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 23:45:30 -0400 |
commit | d506d87f60662ece723bae04e930b6b1d8d1f2d0 (patch) | |
tree | ee646a2c3a834ef6801809c5dc9d9da4923cbc0a /searx/templates/simple | |
parent | 904a8e7e3f62b32c117ecddfeae39ef3f5e47d1f (diff) | |
download | searxng-d506d87f60662ece723bae04e930b6b1d8d1f2d0.tar.gz searxng-d506d87f60662ece723bae04e930b6b1d8d1f2d0.zip |
Remove / in url_for parameter for simple theme
Same change as with the oscar theme.
Diffstat (limited to 'searx/templates/simple')
-rw-r--r-- | searx/templates/simple/macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/macros.html b/searx/templates/simple/macros.html index 883503683..f0b36276c 100644 --- a/searx/templates/simple/macros.html +++ b/searx/templates/simple/macros.html @@ -9,7 +9,7 @@ <!-- Draw favicon --> {% macro draw_favicon(favicon) -%} - <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='/themes/simple/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" /> + <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='themes/simple/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" /> {%- endmacro %} {% macro result_open_link(url, classes='') -%} |