Introduction du nouveau thème
This commit is contained in:
9
themes/42/layouts/_partials/head/css.html
Normal file
9
themes/42/layouts/_partials/head/css.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{{- $mainCSS := resources.Get "css/index.css" | postCSS (dict "inlineImports" true) -}}
|
||||
{{- $bundle := slice $mainCSS | resources.Concat "css/bundle.css" -}}
|
||||
{{- if eq hugo.Environment "development" -}}
|
||||
<link rel="stylesheet" href="{{ $bundle.RelPermalink }}" type="text/css" />
|
||||
{{- else -}}
|
||||
{{- with $bundle | minify | fingerprint -}}
|
||||
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous" type="text/css" />
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user