2018-01-07 15:14:45 +00:00
|
|
|
{
|
2017-09-30 17:37:27 +01:00
|
|
|
"id": "{{ .UniqueID }}",
|
2018-01-07 15:14:45 +00:00
|
|
|
"title": "{{ .Title }}",
|
|
|
|
"image": "{{ absURL .Params.image }}",
|
2018-01-07 15:54:41 +00:00
|
|
|
"date": "{{ .Date.Format .Site.Params.iso8601 }}",
|
2017-09-30 17:37:27 +01:00
|
|
|
"url": "{{ .Permalink }}",
|
|
|
|
"link": "{{ .RelPermalink }}",
|
|
|
|
"link_title": "{{ .LinkTitle }}",
|
2018-01-07 15:54:41 +00:00
|
|
|
"content": {{ jsonify .RawContent }},
|
|
|
|
"content_html": {{ jsonify (.Content | chomp) }},
|
2018-01-07 15:14:45 +00:00
|
|
|
"summary": {{ jsonify (.Summary | plainify | chomp | htmlUnescape) }},
|
2018-01-06 16:37:23 +00:00
|
|
|
"words": {{ .FuzzyWordCount }},
|
|
|
|
"reading_time": {{ .ReadingTime }},
|
2018-01-07 15:14:45 +00:00
|
|
|
"parent": "{{ if .Parent }}{{ .Parent.Title }}{{ end }}",
|
2017-09-30 17:37:27 +01:00
|
|
|
"tags": {{ jsonify .Params.tags }}
|
|
|
|
}
|