{ "@context": [ "https://www.w3.org/ns/activitystreams" ], "title": {{ (htmlUnescape .Title | safeHTML) | jsonify }}, "content": {{ (htmlUnescape .Content | safeHTML) | jsonify }}, "summary": {{ (htmlUnescape .Summary | safeHTML) | jsonify }}, {{- if .Params.images }} "attachment": [ {{ $delimiter := "" -}} {{ range .Params.images }} {{- $delimiter -}}{ "type": "Image", "url": "{{ . }}", {{ $lowerUrl := lower . -}} {{- if or ( strings.HasSuffix $lowerUrl "jpg" ) ( strings.HasSuffix $lowerUrl "jpeg" ) -}} "mediaType": "image/jpeg" {{- else -}} "mediaType": "image/png" {{- end }} } {{- $delimiter = "," -}} {{ end }} ], {{ end -}} "mediaType": "text/html", "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"] }