1
Fork 0
This repository has been archived on 2020-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-activitystreams/layouts/_default/single.activity.ajson

15 lines
547 B
Plaintext

{
"@context": [
"https://www.w3.org/ns/activitystreams"
],
"title": {{ .Title | jsonify }},
"content_html": {{ .Content | jsonify }},
"summary": {{ .Summary | jsonify }},
"published": {{ dateFormat "2006-01-02T15:04:05-07:00" .Lastmod | jsonify }},
"updated": {{ dateFormat "2006-01-02T15:04:05-07:00" .Date | jsonify }},
"id": "{{ .Permalink }}",
"url": "{{ .Permalink }}",
"type": "Article",
"attributedTo": "{{ "" | absLangURL }}",
"to": ["https://www.w3.org/ns/activitystreams#Public"]
}