Fixing links

pull/1/head
mat ess 2022-08-13 00:45:26 -04:00
parent 9884372fd5
commit 748c01b840
1 changed files with 6 additions and 6 deletions

View File

@ -29,19 +29,19 @@
<link href={{ cdn }} rel="stylesheet"> <link href={{ cdn }} rel="stylesheet">
{% endfor %} {% endfor %}
{% else %} {% else %}
<link href={{ get_url(path="fonts.css" ) }} rel="stylesheet" /> <link href="{{ get_url(path='fonts.css') }}" rel="stylesheet" />
{% endif %} {% endif %}
{# RSS #} {# RSS #}
<link rel="alternate" type="application/atom+xml" title="{{ config.title }}" href={{ get_url(path="atom.xml" , <link rel="alternate" type="application/atom+xml" title="{{ config.title }}"
trailing_slash=false) }}> href="{{ get_url(path='atom.xml', trailing_slash=false) }}">
{# Theme #} {# Theme #}
<link rel="stylesheet" type="text/css" href={{ get_url(path="theme/light.css" ) }} /> <link rel="stylesheet" type="text/css" href="{{ get_url(path='theme/light.css') }}" />
<link rel="stylesheet" type="text/css" href={{ get_url(path="theme/dark.css" ) }} <link rel="stylesheet" type="text/css" href="{{ get_url(path='theme/dark.css') }}"
media="(prefers-color-scheme: dark)" /> media="(prefers-color-scheme: dark)" />
<link rel="stylesheet" type="text/css" media="screen" href={{ get_url(path="main.css" ) }} /> <link rel="stylesheet" type="text/css" media="screen" href="{{ get_url(path='main.css') }}" />
{% if config.extra.stylesheets %} {% if config.extra.stylesheets %}