set minimal template for aae association

This commit is contained in:
2023-06-15 13:32:55 +02:00
parent c60c85bf3f
commit f5f1587da0
16 changed files with 322 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
[{{ range $index, $page := .Pages }}{{ if ne $index 0 }},{{ end }}
{
"ref": "{{ $page.Permalink }}",
"title": {{ $page.Title | jsonify }},
"section": "{{ $page.Section }}",
"tags": {{ $page.Params.tags | jsonify }},
"date" : {{ $page.Date.Format "2006.01.02" | jsonify }},
"body": {{ $page.Plain | jsonify }}
}
{{ end }}]