mastodon-markdown-archive/files/templates/post.tmpl

37 lines
702 B
Cheetah
Raw Normal View History

---
date: {{ .Post.CreatedAt }}
{{- if .Post.InReplyToId }}
in_reply_to: {{ .Post.InReplyToId }}
{{- end }}
post_uri: {{ .Post.URI }}
post_id: {{ .Post.Id }}
{{- if len .Tags }}
tags:
{{- range .Tags }}
- {{ .Name }}
{{- end }}
{{- end }}
{{- if len .Descendants }}
descendants:
2024-04-21 16:43:55 +00:00
{{- range .Descendants }}
- {{ .Id }}
{{- end }}
{{- end }}
---
2024-04-21 16:43:55 +00:00
{{ .Post.Content | tomd }}
{{- range .Post.MediaAttachments }}
{{ if eq .Type "image" }}
2024-05-08 23:13:10 +00:00
![{{ .Description }}]({{ .Path }})
{{ end }}
2024-04-21 16:43:55 +00:00
{{- end -}}
{{- range .Descendants }}
{{ .Content | tomd -}}
{{- range .MediaAttachments }}
{{ if eq .Type "image" }}
2024-05-08 23:13:10 +00:00
![{{ .Description }}]({{ .Path }})
{{ end }}
{{- end -}}
2024-04-21 16:43:55 +00:00
{{- end -}}