fixed base.html
This commit is contained in:
parent
ff93ab9fe7
commit
dd9a4303d8
1 changed files with 4 additions and 4 deletions
|
|
@ -11,10 +11,10 @@
|
|||
|
||||
{% block favicon %}
|
||||
<link rel="shortcut icon"
|
||||
href="{{ favicon or "/assets/frappe/images/favicon.ico" }}"
|
||||
href="{{ (favicon or "/assets/frappe/images/favicon.ico") | with_leading_slash }}"
|
||||
type="image/x-icon">
|
||||
<link rel="icon"
|
||||
href="{{ favicon or "/assets/frappe/images/favicon.ico" }}"
|
||||
href="{{ (favicon or "/assets/frappe/images/favicon.ico") | with_leading_slash }}"
|
||||
type="image/x-icon">
|
||||
{% endblock %}
|
||||
{%- block head -%}
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
{% endif %}
|
||||
|
||||
{%- for link in web_include_css %}
|
||||
<link type="text/css" rel="stylesheet" href="{{ link }}">
|
||||
<link type="text/css" rel="stylesheet" href="{{ link | with_leading_slash }}">
|
||||
{%- endfor -%}
|
||||
|
||||
{%- block style %}
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
{%- endblock -%}
|
||||
|
||||
{%- for link in web_include_js %}
|
||||
<script type="text/javascript" src="{{ link }}"></script>
|
||||
<script type="text/javascript" src="{{ link | with_leading_slash }}"></script>
|
||||
{%- endfor -%}
|
||||
{%- block head_include %}{{ head_include or "" }}{% endblock -%}
|
||||
{%- endblock -%}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue