fedipage/layouts/index.activity_outbox.ajson
2023-10-13 18:45:16 -04:00

22 lines
611 B
Text

{{- $pctx := . -}}
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
{{- $pages := slice -}}
{{- if or $.IsHome $.IsSection -}}
{{- $pages = $pctx.RegularPages -}}
{{- else -}}
{{- $pages = $pctx.Pages -}}
{{- end -}}
{
{{ partial "context.ajson" . }},
"id": "{{ $.Site.BaseURL }}outbox",
"summary": "{{$.Site.Author.name}} - {{$.Site.Title}}",
"type": "OrderedCollection",
{{ $all := where $pages ".Draft" "!=" true }}
"totalItems": {{(len $all)}},
"orderedItems": [
{{ range $index, $element := $all }}
{{- if ne $index 0 }}, {{ end }}
{{ partial "activity.ajson" . }}
{{end}}
]
}