hugo-book-theme/layouts/home.json

11 lines
278 B
JSON
Raw Normal View History

2019-07-15 18:25:21 +02:00
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 -}}
]