Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions theme_manager/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
{%- endfor -%}
{%- endblock -%}

{%- block head_include %}
{%- block head_include -%}
{{ head_include or "" }}
{% endblock -%}
{%- endblock -%}

{%- block style %}
{% if colocated_css -%}
Expand All @@ -62,7 +62,11 @@
</script>
</head>
<body frappe-session-status="{{ 'logged-in' if frappe.session.user != 'Guest' else 'logged-out'}}" data-path="{{ path | e }}" {%- if template and template.endswith('.md') %} frappe-content-type="markdown" {%- endif %} class="{{ body_class or ''}}">
{% include "public/icons/timeless/symbol-defs.svg" %}

{# FIXED: include timeless icon sprite safely across Frappe versions #}
{% include "frappe/public/icons/timeless/symbol-defs.svg" ignore missing %}
{% include "frappe/public/icons/timeless/icons.svg" ignore missing %}

{%- block banner -%}
{% include "templates/includes/banner_extension.html" ignore missing %}

Expand Down