mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
10 lines
365 B
HTML
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 }} |