Skip to content

Commit

Permalink
🐛 fix(header): add quotes to custom subset links
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Nov 22, 2023
1 parent 94f7a36 commit 1221eee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
{# CSS #}
{# Load subset of glyphs for header. Avoids flashing issue in Firefox #}
{% 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' %}
<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' %}
<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 %}

{# Define array of CSS files to load. main.css is always loaded. #}
Expand Down

0 comments on commit 1221eee

Please sign in to comment.