Add .Summary as fallback for description

This commit is contained in:
Michael Schnerring
2021-10-13 17:17:28 +02:00
parent b1227d78cc
commit 434396b612
2 changed files with 10 additions and 2 deletions

View File

@ -104,7 +104,11 @@ Source:
id: {{ $index }},
href: "{{ .RelPermalink }}",
title: {{ .Title | jsonify }},
description: {{ .Params.description | jsonify }},
{{ with .Description -}}
description: {{ . | jsonify }},
{{ else -}}
description: {{ .Summary | plainify | jsonify }},
{{ end -}}
content: {{ .Content | jsonify }}
})
{{ if ne (add $index 1) $len -}}