website-theme/layouts/_default/item.json.json

28 lines
912 B
JSON
Raw Normal View History

2023-01-05 01:09:46 -05:00
{
"id": "{{ .Permalink }}",
"url": "{{ .Permalink }}",
"title": {{ .Title | jsonify }},
"authors": [
{{with $.Site.Author.name }}
{ "name": "{{ . }}" }
{{ end }}
],
"content_html": {{ .Content | jsonify }},
"date_published": "{{ .Date.Format "2006.01.02" }}",
"tags": {{ .Params.tags | jsonify }},
"_syndication": {
"mastodon": {
"enabled": {{ .Params.mastodon_enabled | default "false" }},
"toot_id": {{ .Params.mastodon_toot_id | default "null" }}
},
"medium": {
"enabled": {{ .Params.medium_enabled | default "false" }},
"post_id": {{ .Params.medium_post_id | default "null" }}
},
"substack": {
"enabled": {{ .Params.substack_enabled | default "false" }},
"post_id": {{ .Params.substack_post_id | default "null" }}
}
}
}