mirror of
https://github.com/searxng/searxng.git
synced 2024-11-09 06:30:10 +01:00
Merge pull request #1066 from MrPetovan/issue/fix-favicon-paths
[fix] Missing favicon images in oscar and simple themes
This commit is contained in:
commit
b34124fd8a
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<!-- Draw favicon -->
|
<!-- Draw favicon -->
|
||||||
{% macro draw_favicon(favicon) -%}
|
{% macro draw_favicon(favicon) -%}
|
||||||
<img width="32" height="32" class="favicon" src="{{ url_for('static', filename='/themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
|
<img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
|
||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
|
||||||
{%- macro result_link(url, title, classes='') -%}
|
{%- macro result_link(url, title, classes='') -%}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<!-- Draw favicon -->
|
<!-- Draw favicon -->
|
||||||
{% macro draw_favicon(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 %}
|
{%- endmacro %}
|
||||||
|
|
||||||
{% macro result_open_link(url, classes='') -%}
|
{% macro result_open_link(url, classes='') -%}
|
||||||
|
Loading…
Reference in New Issue
Block a user