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

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Philibert <login@regisphilibert.com>2021-12-24 00:02:15 +0300
committerGitHub <noreply@github.com>2021-12-24 00:02:15 +0300
commit73a363ca524fdf2f24e5ff220ced3402c533d180 (patch)
tree920055f6f64b3ba0b06d56317ccd2d753e41cb99
parent1f11fbe012c8def45b5b9dfa9f6ad4f56b831a97 (diff)
Fix `_styles.css` bad reference in GetMainCSS (#463)
Fixes #459
-rw-r--r--layouts/partials/func/style/GetMainCSS.html2
1 files changed, 1 insertions, 1 deletions
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 }}