valor/layouts/_default/single.activitypub.json

11 lines
344 B
JSON
Raw Normal View History

2025-09-27 18:18:33 -04:00
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Article",
"id": "{{ .Permalink }}",
"name": "{{ .Title }}",
2025-09-27 18:46:42 -04:00
"attributedTo": "https://gabe.rocks/@gabriel",
2025-09-27 18:18:33 -04:00
"to": ["https://www.w3.org/ns/activitystreams#Public"],
"published": "{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}",
"content": {{ .Content | jsonify }}
}