Add custom css support (#21)

This commit is contained in:
Arnab Kumar Shil 2018-12-30 12:49:24 +06:00 committed by Track3
parent 4fb41e8a9a
commit 269713b589
3 changed files with 12 additions and 1 deletions

View file

@ -25,6 +25,9 @@
{{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "css/style.css" . | toCSS | minify | fingerprint -}}
<link rel="stylesheet" href="{{ $style.Permalink }}" {{ printf "integrity=%q" $style.Data.Integrity | safeHTMLAttr }}>
{{ block "head" . -}}{{- end }}
{{ range .Site.Params.CustomCSS -}}
<link rel="stylesheet" href="{{ . | absURL }}">
{{- end }}
</head>
<body id="page">