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

16 lines
650 B
Plaintext

{
"@context": [
"https://www.w3.org/ns/activitystreams"
],
"title": {{ (htmlUnescape .Title | safeHTML) | jsonify }},
"content": {{ (htmlUnescape .Content | safeHTML) | jsonify }},
"mediaType": "text/html",
"summary": {{ (htmlUnescape .Summary | safeHTML) | 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"]
}