9 lines
321 B
HTML
9 lines
321 B
HTML
{{ if .Site.Params.custom_css }}
|
|
{{ range .Site.Params.custom_css }}
|
|
{{ $custom_template := resources.Get . }}
|
|
{{ if $custom_template }}
|
|
{{ $custom_style := $custom_template | resources.ToCSS | resources.Minify }}
|
|
<link rel="stylesheet" href="{{ $custom_style.RelPermalink }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }} |