From 9affa72dbc694aaf20897a8fd199c5d20d3b7410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guibert?= Date: Sat, 24 Jan 2026 12:49:30 +0100 Subject: [PATCH] Fixed css import --- layouts/_partials/head/css.html | 50 +++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 layouts/_partials/head/css.html diff --git a/layouts/_partials/head/css.html b/layouts/_partials/head/css.html new file mode 100644 index 0000000..ec5a5db --- /dev/null +++ b/layouts/_partials/head/css.html @@ -0,0 +1,50 @@ +{{- with resources.Get "css/fonts.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end}} + {{- end }} +{{- end }} + +{{- with resources.Get "css/list.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end}} + {{- end }} +{{- end }} + +{{- with resources.Get "css/moonwalk.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end }} + {{- end }} +{{- end }} + +{{- with resources.Get "css/theme.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end}} + {{- end }} +{{- end }} + + +{{- with resources.Get "css/vertical-list.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end}} + {{- end }} +{{- end }}