update jsonfeed for notes
This commit is contained in:
parent
3fb8d959d5
commit
38263a5906
@ -5,13 +5,13 @@
|
||||
"feed_url": "{{ .Permalink }}",
|
||||
"description": "A feed of my notes from {{ .Site.Title }}",
|
||||
"items": [
|
||||
{{- range .Pages.ByDate.Reverse -}}
|
||||
{{- range $index, $page := .Pages.ByDate.Reverse -}}
|
||||
{
|
||||
"id": "{{ .Permalink }}",
|
||||
"url": "{{ .Permalink }}",
|
||||
"content_text": {{ .Plain | jsonify }},
|
||||
"date_published": "{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}"
|
||||
}{{ if not (last .Pages.ByDate.Reverse .) }},{{ end }}
|
||||
"id": "{{ $page.Permalink }}",
|
||||
"url": "{{ $page.Permalink }}",
|
||||
"content_text": {{ $page.Plain | jsonify }},
|
||||
"date_published": "{{ $page.Date.Format "2006-01-02T15:04:05Z07:00" }}"
|
||||
}{{ if lt $index (sub (len .Pages) 1) }},{{ end }}
|
||||
{{- end }}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user