🐛 fix(header): add quotes to custom subset links

main
welpo 1 year ago
parent 94f7a36707
commit 1221eeeb41
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

@ -20,11 +20,11 @@
{# CSS #} {# CSS #}
{# Load subset of glyphs for header. Avoids flashing issue in Firefox #} {# Load subset of glyphs for header. Avoids flashing issue in Firefox #}
{% if config.extra.custom_subset and config.extra.custom_subset == true %} {% if config.extra.custom_subset and config.extra.custom_subset == true %}
<link rel="stylesheet" href={{ get_url(path="custom_subset.css" , cachebust=true) }}> <link rel="stylesheet" href="{{ get_url(path="custom_subset.css" , cachebust=true) }}">
{% elif lang == 'en' %} {% elif lang == 'en' %}
<link rel="stylesheet" href={{ get_url(path="inter_subset_en.css", cachebust=true ) }}> <link rel="stylesheet" href="{{ get_url(path="inter_subset_en.css", cachebust=true ) }}">
{% elif lang == 'es' %} {% elif lang == 'es' %}
<link rel="stylesheet" href={{ get_url(path="inter_subset_es.css", cachebust=true ) }}> <link rel="stylesheet" href="{{ get_url(path="inter_subset_es.css", cachebust=true ) }}">
{% endif %} {% endif %}
{# Define array of CSS files to load. main.css is always loaded. #} {# Define array of CSS files to load. main.css is always loaded. #}

Loading…
Cancel
Save