11 lines
334 B
HTML
11 lines
334 B
HTML
{{ $sectionCSS := dict }}
|
|
{{ $sectionStylesheet := "" }}
|
|
{{ if .IsHome }}
|
|
{{ $sectionStylesheet = printf "styles/home.css" }}
|
|
{{ else }}
|
|
{{ $sectionStylesheet = printf "styles/%s.css" .Section }}
|
|
{{ end }}
|
|
{{ with resources.Get $sectionStylesheet }}
|
|
{{ $sectionCSS = . | fingerprint "md5" }}
|
|
{{ end }}
|
|
{{ return $sectionCSS }}
|