From 73a363ca524fdf2f24e5ff220ced3402c533d180 Mon Sep 17 00:00:00 2001 From: Regis Philibert Date: Thu, 23 Dec 2021 16:02:15 -0500 Subject: Fix `_styles.css` bad reference in GetMainCSS (#463) 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 9e3c24d..c4daa88 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 }} -- cgit v1.2.3