Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.json « layouts - github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab313ca176c9bbeabdc2220da055876a520035a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[{{ range $index, $page := .Site.Pages }}
{{- if and (ne $page.Type "json") (ne $page.Type "html") -}}
{{- if and $index (gt $index 0) -}},{{- end }}
{
	"uri": "{{ $page.Permalink }}",
	"title": {{ $page.Title | jsonify }},
	"tags": {{ $page.Params.tags | jsonify }},
	"description": {{ .Description | jsonify }},
	"content": {{$page.Plain | jsonify}}
}
{{- end -}}
{{- end -}}]