hugo-theme-zzo/layouts/partials/head/styles.html

8 lines
415 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
{{ $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 }}
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 }}