1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2025-03-04 08:59:18 +00:00
danbarber.me.hugo/layouts/section/blog.json
2019-10-25 17:16:38 -04:00

22 lines
561 B
JSON

{
"version": "https://jsonfeed.org/version/1",
"title": "{{ .Site.Title }}",
"home_page_url": "{{ .Site.BaseURL }}",
"feed_url": "{{ .Permalink}}",
"items": [
{{ range $i, $e := first 20 .Pages }}
{{ if $i }}, {{ end }}
{
"id": "{{ .Permalink }}",
"title": "{{ .Title }}",
"content_html": {{ .Content | jsonify }},
"url": "{{ .Permalink }}",
"date_published": "{{ .Date }}"{{ if .Params.categories }},
"categories": ["{{ delimit .Params.categories "\", \"" }}"]
{{ end }}
}
{{ end }}
]
}