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

27 lines
498 B
Cheetah
Raw Normal View History

---
date: {{ .Post.CreatedAt }}
post_url: {{ .Post.URI }}
post_ids:
- {{ .Post.Id }}
2024-04-21 16:43:55 +00:00
{{- range .Descendants }}
- {{ .Id }}
{{- 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 }})
2024-04-21 16:43:55 +00:00
{{ end }}
{{- end -}}
{{- range .Descendants }}
{{ .Content | tomd -}}
{{ range .MediaAttachments }}
{{- if eq .Type "image" -}}
2024-05-08 23:13:10 +00:00
![{{ .Description }}]({{ .Path }})
2024-04-21 16:43:55 +00:00
{{ end }}
{{- end -}}
{{- end -}}