website/post.tmpl

16 lines
382 B
Cheetah
Raw Permalink Normal View History

2022-10-08 09:00:00 +00:00
{{- $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 }}