8 lines
415 B
HTML
8 lines
415 B
HTML
{{ $main_options := (dict "targetPath" "css/zzo.css" "outputStyle" "compressed") }}
|
|
{{ $main_template := resources.Get "sass/main.scss" }}
|
|
{{ $main_style := $main_template | resources.ExecuteAsTemplate "main_parsed.scss" . | toCSS $main_options | minify }}
|
|
<link rel="stylesheet" href="{{ $main_style.RelPermalink }}">
|
|
|
|
{{ range .Site.Params.custom_css -}}
|
|
<link rel="stylesheet" href="{{ . | absURL }}">
|
|
{{- end }} |