gohugo-theme-bree/layouts/partials/post-class.html
2022-06-05 18:10:42 +02:00

8 lines
227 B
HTML

{{- $postClass := "page" -}}
{{- if .IsPage -}}
{{- $postClass = .Type | lower | singularize -}}
{{- if eq $postClass "poem" -}}
{{- $postClass = "poem poetry" -}}
{{- end -}}
{{- end -}}
{{- $postClass -}}