1
Fork 0
theorangeone.net-legacy/layouts/partials/page_data.json

17 lines
587 B
JSON
Raw Normal View History

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