2021-01-06 11:19:12 -05:00

10 lines
365 B
HTML

{{ with resources.Get "/ananke/css/main.css" }}
{{ $settings := dict "config" "/assets/ananke/css/postcss.config.css" }}
{{ $style := . | resources.PostCSS }}
{{ with $style }}
<link rel="stylesheet" href="{{ .RelPermalink }}">
{{ end }}
{{ end }}
{{ range .Site.Params.custom_css }}
<link rel="stylesheet" href="{{ relURL (.) }}">
{{ end }}