Patrick Kollitsch 180471112e
refactor: move all template methods to proper GoHugo methods
Signed-off-by: Patrick Kollitsch <patrick@davids-neighbour.com>
2025-03-10 16:29:18 +07:00

10 lines
339 B
HTML

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