18 lines
611 B
JSON
Raw Normal View History

2025-01-08 15:24:53 -07:00
{
"version": "https://jsonfeed.org/version/1.1",
"title": "{{ .Site.Title }} - Notes Feed",
"home_page_url": "{{ .Site.BaseURL }}",
"feed_url": "{{ .Permalink }}",
"description": "A feed of my notes from {{ .Site.Title }}",
"items": [
{{- range .Pages.ByDate.Reverse -}}
{
"id": "{{ .Permalink }}",
"url": "{{ .Permalink }}",
"content_text": {{ .Plain | jsonify }},
2025-01-08 15:35:07 -07:00
"date_published": "{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}"
}{{ if not (last .Pages.ByDate.Reverse .) }},{{ end }}
2025-01-08 15:24:53 -07:00
{{- end }}
]
}