11 lines
361 B
JSON
11 lines
361 B
JSON
|
{
|
||
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||
|
"type": "Article",
|
||
|
"id": "{{ .Permalink }}",
|
||
|
"name": "{{ .Title }}",
|
||
|
"attributedTo": "https://fedi.libresolutions.network/@gabriel",
|
||
|
"to": ["https://www.w3.org/ns/activitystreams#Public"],
|
||
|
"published": "{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}",
|
||
|
"content": {{ .Content | jsonify }}
|
||
|
}
|