2024-11-14 18:45:16 +00:00
|
|
|
{{- with resources.Get "css/main.css" }} {{- if eq hugo.Environment
|
|
|
|
"development" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" />
|
2024-11-13 21:14:37 +00:00
|
|
|
{{- end }}
|
2024-11-14 18:45:16 +00:00
|
|
|
{{- with resources.Get "css/syntax.css" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" />
|
2024-11-15 10:46:13 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- with resources.Get "css/defaults.css" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" />
|
2024-11-14 18:45:16 +00:00
|
|
|
{{- else }} {{- with . | minify | fingerprint }}
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="{{ .RelPermalink }}"
|
|
|
|
integrity="{{ .Data.Integrity }}"
|
|
|
|
crossorigin="anonymous"
|
|
|
|
/>
|
|
|
|
{{- end }} {{- end }} {{- end }}
|