11 lines
278 B
JSON
11 lines
278 B
JSON
|
window.lunrData = [
|
||
|
{{ range $index, $page := .Site.Pages }}
|
||
|
{{- if and $index (gt $index 0) -}},{{- end }}
|
||
|
{
|
||
|
"href": "{{ $page.RelPermalink }}",
|
||
|
"title": "{{ htmlEscape $page.Title }}",
|
||
|
"content": {{ $page.Plain | jsonify }}
|
||
|
}
|
||
|
{{- end -}}
|
||
|
]
|