fix css relative url

This commit is contained in:
2024-11-20 08:28:05 -06:00
parent 1e9a2a1162
commit af921f9812

View File

@@ -2,9 +2,9 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{#if title }}{{ title }}{{else}}{{ site.title }}{{/if}} - {{ site.name }}</title> <title>{{#if title }}{{ title }}{{else}}{{ site.title }}{{/if}} - {{ site.name }}</title>
<link rel="stylesheet" href="{{site.url}}/css/style.css"> <link rel="stylesheet" href="{{url '/css/style.css' }}">
{{#each stylesheets}} {{#each stylesheets}}
<link rel="stylesheet" href="{{site.url}}{{this}}"> <link rel="stylesheet" href="{{url this}}">
{{/each}} {{/each}}
</head> </head>
<body class="{{{bodyClasses}}}"> <body class="{{{bodyClasses}}}">