mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 10:50:34 -05:00
24 lines
No EOL
793 B
JSON
24 lines
No EOL
793 B
JSON
{
|
|
"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 | jsonify }},
|
|
"toot_text": "{{ .Params.mastodon_toot_text | default ""}}"
|
|
},
|
|
"medium": {
|
|
"enabled": {{ .Params.medium_enabled | default "false" }},
|
|
"post_id": {{ .Params.medium_post_id | jsonify }}
|
|
}
|
|
}
|
|
} |