16 lines
584 B
JSON
16 lines
584 B
JSON
{
|
|
"id": "{{ .UniqueID }}",
|
|
"title": "{{ .Title }}",
|
|
"image": "{{ absURL .Params.image }}",
|
|
"date": "{{ .Date.Format .Site.Params.iso8601 }}",
|
|
"url": "{{ .Permalink }}",
|
|
"link": "{{ .RelPermalink }}",
|
|
"link_title": "{{ .LinkTitle }}",
|
|
"content": {{ jsonify .RawContent }},
|
|
"content_html": {{ jsonify (.Content | chomp) }},
|
|
"summary": {{ jsonify (.Summary | plainify | chomp | htmlUnescape) }},
|
|
"words": {{ .FuzzyWordCount }},
|
|
"reading_time": {{ .ReadingTime }},
|
|
"parent": "{{ if .Parent }}{{ .Parent.Title }}{{ end }}",
|
|
"tags": {{ jsonify .Params.tags }}
|
|
}
|