14 lines
329 B
HTML
14 lines
329 B
HTML
{% if head_html is defined -%}
|
|
{{ head_html or "" }}
|
|
{%- endif %}
|
|
|
|
{%- if theme and 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 -%}
|