2025-04-18 18:11:05 +00:00
|
|
|
{{- with resources.Get "css/color.css" }}
|
|
|
|
{{- if eq hugo.Environment "development" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
|
|
{{- else }}
|
2025-04-18 19:27:25 +00:00
|
|
|
{{- with . }}
|
2025-04-18 18:11:05 +00:00
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with resources.Get "css/fonts.css" }}
|
|
|
|
{{- if eq hugo.Environment "development" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
|
|
{{- else }}
|
2025-04-18 19:27:25 +00:00
|
|
|
{{- with . }}
|
2025-04-18 18:11:05 +00:00
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with resources.Get "css/main.css" }}
|
|
|
|
{{- if eq hugo.Environment "development" }}
|
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
|
|
{{- else }}
|
2025-04-18 19:27:25 +00:00
|
|
|
{{- with . }}
|
2025-04-18 18:11:05 +00:00
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|