瀏覽代碼

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

[fix] Missing favicon images in oscar and simple themes
Adam Tauber 7 年之前
父節點
當前提交
b34124fd8a
共有 2 個檔案被更改,包括 2 行新增2 行删除
  1. 1
    1
      searx/templates/oscar/macros.html
  2. 1
    1
      searx/templates/simple/macros.html

+ 1
- 1
searx/templates/oscar/macros.html 查看文件

@@ -5,7 +5,7 @@
5 5
 
6 6
 <!-- Draw favicon -->
7 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 9
 {%- endmacro %}
10 10
 
11 11
 {%- macro result_link(url, title, classes='') -%}

+ 1
- 1
searx/templates/simple/macros.html 查看文件

@@ -9,7 +9,7 @@
9 9
 
10 10
 <!-- Draw favicon -->
11 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 13
 {%- endmacro %}
14 14
 
15 15
 {% macro result_open_link(url, classes='') -%}