aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/_default/index.js
blob: 9f764f91d4f6c5c9a5d6a9a1dc2e45f8ada89698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
var docs = [
{{ range $index, $page := (where .Site.Pages "Section" "docs") -}}
  {
    id: {{ $index }},
    title: "{{ .Title }}",
    description: "{{ .Params.description }}",
    href: "{{ .URL | relURL }}"
  },
{{ end -}}
];