seitime-frappe/frappe/templates/includes/head.html
DrZoidberg09 cd9ee5b98c
refactor: allow to include head.html in custom app (#18671)
* Update base.html

* Create head.html

Co-authored-by: Ankush Menat <ankush@frappe.io>
2022-10-31 16:55:53 +05:30

13 lines
318 B
HTML

{% if head_html is defined -%}
{{ head_html or "" }}
{%- endif %}
{%- if theme.name != 'Standard' -%}
<link type="text/css" rel="stylesheet" href="{{ theme.theme_url }}">
{%- else -%}
{{ include_style('website.bundle.css') }}
{%- endif -%}
{%- for link in web_include_css %}
{{ include_style(link) }}
{%- endfor -%}