website-theme/layouts/_default/list.feedjson.json
2022-11-26 02:25:43 -05:00

22 lines
860 B
JSON

{
"version": "https://jsonfeed.org/version/1.1",
"title": "{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} | {{ end }}{{ .Site.Title }}{{ end }}",
"home_page_url": "{{ .Site.BaseURL }}",
"feed_url": "{{ .Permalink }}",
"description": "{{ .Description }}",
"items": [{{ range $index, $page := .Pages }}{{ if ne $index 0 }},{{ end }}
{
"author": {
{{with $.Site.Author.name }}"name": "{{ . }}",{{ end }}
"url": "{{ .Site.BaseURL }}"
},
"id": "{{ $page.Permalink }}",
"content_html": {{ $page.Content | jsonify }},
"date_published": {{ $page.Date.Format "2006.01.02" | jsonify }},
"url": "{{ $page.Permalink }}",
"title": {{ $page.Title | jsonify }},
"tags": {{ $page.Params.tags | jsonify }}
}
{{ end }}]
}