www.byjp.me/layouts/partials/post-type.html
JP Hastings-Spital 0e2470cc25 More vibrant homepage
The code here is a bit of a mess; but GARDEN! 🌿🐉
2024-03-17 21:29:45 +00:00

22 lines
604 B
HTML

{{ $typeStr := .Type | singularize }}
{{- $url := "" -}}
{{- if .Params.bookmarkOf -}}
{{- $url = .Params.bookmarkOf -}}
{{- else if .Params.inReplyTo -}}
{{- $url = .Params.inReplyTo -}}
{{- end -}}
{{- $reference := dict -}}
{{- range .Params.references -}}
{{- if eq .url $url -}}
{{- $reference = . -}}
{{- end }}
{{- end -}}
{{- if $reference.type -}}
{{- $targetType := partial "partials/article-type.html" (default "article" $reference.type) -}}
{{- (printf "%s %s" $targetType $typeStr) | strings.FirstUpper -}}
{{- else -}}
{{- $typeStr | strings.FirstUpper -}}
{{- end -}}