Browse Source

Merge pull request #1066 from MrPetovan/issue/fix-favicon-paths

[fix] Missing favicon images in oscar and simple themes
Adam Tauber 7 years ago
parent
commit
b34124fd8a
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      searx/templates/oscar/macros.html
  2. 1
    1
      searx/templates/simple/macros.html

+ 1
- 1
searx/templates/oscar/macros.html View File

5
 
5
 
6
 <!-- Draw favicon -->
6
 <!-- Draw favicon -->
7
 {% macro draw_favicon(favicon) -%}
7
 {% macro draw_favicon(favicon) -%}
8
-    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='/themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
8
+    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
9
 {%- endmacro %}
9
 {%- endmacro %}
10
 
10
 
11
 {%- macro result_link(url, title, classes='') -%}
11
 {%- macro result_link(url, title, classes='') -%}

+ 1
- 1
searx/templates/simple/macros.html View File

9
 
9
 
10
 <!-- Draw favicon -->
10
 <!-- Draw favicon -->
11
 {% macro draw_favicon(favicon) -%}
11
 {% macro draw_favicon(favicon) -%}
12
-    <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='/themes/simple/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
12
+    <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='themes/simple/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
13
 {%- endmacro %}
13
 {%- endmacro %}
14
 
14
 
15
 {% macro result_open_link(url, classes='') -%}
15
 {% macro result_open_link(url, classes='') -%}