mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 14:54:48 +00:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
var docs = [
|
|
{{ range $index, $page := (where .Site.Pages "Section" "docs") -}}
|
|
{
|
|
id: {{ $index }},
|
|
title: "{{ .Title }}",
|
|
description: "{{ .Params.description }}",
|
|
href: "{{ .URL | relURL }}"
|
|
},
|
|
{{ end -}}
|
|
]; |