Files
mehl.mx/themes/hugo-sustain/layouts/partials/blog/verb.html
T

13 lines
387 B
HTML
Raw Normal View History

{{- $cats := .Page.Params.categories }}
2026-02-12 22:57:49 +01:00
{{- $symbols := dict "article" "Article published" "presentation" "Presentation given" "podcast" "Podcast released" }}
{{- $selection := "" }}
{{- range $cat := $cats }}
{{- with index $symbols $cat }}
{{- $selection = . }}
{{- end }}
{{- end }}
{{- if not $selection }}
{{- $selection = "Blogged" }}
{{- end }}
{{- return $selection }}