From 4a81618d05edca21e99c0a1b95810e09e68a1416 Mon Sep 17 00:00:00 2001 From: Regis Philibert Date: Thu, 23 Dec 2021 16:01:46 -0500 Subject: [PATCH] Fix `_styles.css` bad reference in GetMainCSS Fixes #459 --- layouts/partials/func/style/GetMainCSS.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/func/style/GetMainCSS.html b/layouts/partials/func/style/GetMainCSS.html index 9e3c24d93..c4daa88a3 100644 --- a/layouts/partials/func/style/GetMainCSS.html +++ b/layouts/partials/func/style/GetMainCSS.html @@ -16,7 +16,7 @@ {{/* We prepare a slice of resources to be concatenated as one */}} {{ $assets_to_concat := slice }} {{/* We add locale css files to the slice in the proper order */}} -{{ range slice "_tachyons.css" "_code.css" "_hugo-internal-templates.css" "_social-icons.css" "_styles" }} +{{ range slice "_tachyons.css" "_code.css" "_hugo-internal-templates.css" "_social-icons.css" "_styles.css" }} {{ with partialCached "func/style/GetResource" . . }} {{ $assets_to_concat = $assets_to_concat | append . }} {{ end }}