2019-11-04 13:09:44 +00:00
|
|
|
{{ $main_options := (dict "targetPath" "css/zzo.css" "outputStyle" "compressed") }}
|
|
|
|
{{ $main_template := resources.Get "sass/main.scss" }}
|
2019-11-05 02:18:12 +00:00
|
|
|
{{ $main_style := $main_template | resources.ExecuteAsTemplate "main_parsed.scss" . | toCSS $main_options | minify }}
|
2019-11-04 13:09:44 +00:00
|
|
|
<link rel="stylesheet" href="{{ $main_style.RelPermalink }}">
|
2019-11-06 03:07:30 +00:00
|
|
|
|
|
|
|
{{ range .Site.Params.custom_css -}}
|
|
|
|
<link rel="stylesheet" href="{{ . | absURL }}">
|
|
|
|
{{- end }}
|