website/post.tmpl
2022-10-08 14:30:00 +05:30

16 lines
382 B
Cheetah

{{- $content := "" -}}
{{- if .Post.content -}}
{{- $content = index .Post.content.text -}}
{{- end -}}
{{- $_ := move .Post "updated" "lastmod" -}}
{{- $_ := move .Post "name" "title" -}}
{{- $_ := move .Post "type" "h" -}}
{{- $_ := delete .Post "mp-slug" -}}
{{- $_ := move .Post "category" "tags" -}}
{{- $_ := delete .Post "content" -}}
---
{{yaml .Post}}
---
{{ $content }}