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

github.com/fncnt/vncnt-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfncnt <fncnt@users.noreply.github.com>2022-08-26 11:07:29 +0300
committerGitHub <noreply@github.com>2022-08-26 11:07:29 +0300
commit32afe0e679e6c0a969b58b57018ea2d071d0269a (patch)
treee9e0a82214e21e4d36e3d9cc6b59bd83a3f50f43
parent2b60f4e5527729f4b807e7be84cf9accd8b48846 (diff)
parent8c39c24366717de9a887ca90b04b3a211d275fb6 (diff)
Merge pull request #15 from davidcoe/use-absolute-url-css
Use absolute url for css assets
-rw-r--r--layouts/partials/includes.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/includes.html b/layouts/partials/includes.html
index f7b2951..dba3f51 100644
--- a/layouts/partials/includes.html
+++ b/layouts/partials/includes.html
@@ -1,4 +1,4 @@
-<link rel="stylesheet" href="css/fonts.css" type="text/css">
- <link rel="stylesheet" href="css/normalize.css">
- <link rel="stylesheet" href="css/all.min.css">
- <link rel="stylesheet" href="css/vncnt.css">
+<link rel="stylesheet" href="{{ "/css/fonts.css" | absURL }}" type="text/css">
+ <link rel="stylesheet" href="{{ "/css/normalize.css" | absURL }}">
+ <link rel="stylesheet" href="{{ "/css/all.min.css" | absURL }}">
+ <link rel="stylesheet" href="{{ "/css/vncnt.css" | absURL }}">