mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Regis Philibert
23.02.2021 73a363ca524fdf2f24e5ff220ced3402c533d180
Fix `_styles.css` bad reference in GetMainCSS (#463)

Fixes #459
1 files modified
2 ■■■ changed files
layouts/partials/func/style/GetMainCSS.html 2 ●●● patch | view | raw | blame | history
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 }}