Patrick Kollitsch 5ab0adb0e1
refactor: using full file names for partials
Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
2025-02-01 06:58:46 +07:00

10 lines
316 B
HTML

{{ with partialCached "func/style/GetMainCSS.html" "style/GetMainCSS" }}
<link rel="stylesheet" href="{{ .RelPermalink }}" >
{{ end }}
{{ range site.Params.custom_css }}
{{ with partialCached "func/style/GetResource.html" . . }}{{ else }}
<link rel="stylesheet" href="{{ relURL (.) }}">
{{ end }}
{{ end }}