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

37 lines
730 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 }}
2024-05-13 08:47:26 +00:00
{{- if len .Post.AllTags }}
tags:
2024-05-13 08:47:26 +00:00
{{- range .Post.AllTags }}
- {{ .Name }}
{{- end }}
{{- end }}
2024-05-13 08:47:26 +00:00
{{- if len .Post.Descendants }}
descendants:
2024-05-13 08:47:26 +00:00
{{- range .Post.Descendants }}
- {{ .Id }}
{{- end }}
{{- end }}
---
2024-04-21 16:43:55 +00:00
{{ .Post.Content | tomd }}
2024-05-13 08:47:26 +00:00
{{ 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 -}}
2024-05-13 08:47:26 +00:00
{{ range .Post.Descendants }}
{{ .Content | tomd }}
{{ range .MediaAttachments }}
{{- if eq .Type "image" }}
![{{ .Description }}]({{ .Path }})
{{- end }}
{{- end }}
{{- end }}