Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/your-identity/hugo-theme-dimension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authord-asnaghi <asnaghi@me.com>2020-05-21 18:06:24 +0300
committerd-asnaghi <asnaghi@me.com>2020-05-21 18:06:24 +0300
commit1a8785e0fa8200f1b0450f568dcae7e728c04f2e (patch)
tree32619945c17cc2042eb2d1dc990f91c340ed17c4
parent64e2e60d1b726471d60f6e2e401a030f2b436717 (diff)
[HUGO] fix CSS parsing
-rw-r--r--layouts/partials/header.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 3a7e08e..938bb10 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -4,8 +4,8 @@
<title>{{ .Params.Title | default "Title" }}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
- <link rel="stylesheet" href={{ "assets/css/main.css" | absURL }}/>
- <noscript><link rel="stylesheet" href={{ "assets/css/noscript.css" | absURL }}/></noscript>
+ <link rel="stylesheet" href="{{ "assets/css/main.css" | absURL }}"/>
+ <noscript><link rel="stylesheet" href="{{ "assets/css/noscript.css" | absURL }}"/></noscript>
<style>
:root{--site-background : url("{{ .Params.background | default "images/bg.jpg" | absURL }}")};
</style>