2019-11-13 08:06:51 +00:00
|
|
|
{{ if .Site.Params.custom_css }}
|
|
|
|
{{ range .Site.Params.custom_css }}
|
2019-11-06 16:47:35 +00:00
|
|
|
{{ $custom_template := resources.Get . }}
|
|
|
|
{{ if $custom_template }}
|
|
|
|
{{ $custom_style := $custom_template | resources.ToCSS | resources.Minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $custom_style.RelPermalink }}">
|
|
|
|
{{ end }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|