Fix: use dynamic path for _static
Change-Id: Ic91ea8372f971b23bc71eadfc2eeab4387b7d7db
This commit is contained in:
parent
fc52996251
commit
671da2381e
|
@ -49,11 +49,11 @@
|
|||
{%- if favicon_url or favicon %}
|
||||
<link rel="shortcut icon" href="{{ _favicon_url }}"/>
|
||||
{%- endif %}
|
||||
<link rel="shortcut icon" type="image/png" href="_static/favicon-16x16.png" sizes="16x16"/>
|
||||
<link rel="shortcut icon" type="image/png" href="_static/favicon-32x32.png" sizes="32x32"/>
|
||||
<link rel="shortcut icon" type="image/png" href="_static/favicon-96x96.png" sizes="96x96"/>
|
||||
<link rel="shortcut icon" type="image/png" href="_static/favicon-128x128.png" sizes="128x128"/>
|
||||
<link rel="shortcut icon" type="image/png" href="_static/favicon-196x196.png" sizes="196x196"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{pathto('_static/' + 'favicon-16x16.png', 1)}}" sizes="16x16"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{pathto('_static/' + 'favicon-32x32.png', 1)}}" sizes="32x32"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{pathto('_static/' + 'favicon-96x96.png', 1)}}" sizes="96x96"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{pathto('_static/' + 'favicon-128x128.png', 1)}}" sizes="128x128"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{pathto('_static/' + 'favicon-196x196.png', 1)}}" sizes="196x196"/>
|
||||
|
||||
{#- CANONICAL URL (deprecated) #}
|
||||
{%- if theme_canonical_url and not pageurl %}
|
||||
|
|
Loading…
Reference in New Issue