Files
mantelzorgwoning.info/layouts/partials/schema/faq.html
2025-12-10 15:55:30 +01:00

22 lines
466 B
HTML

{{- with .Params.faq }}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{{- $len := len . -}}
{{- range $i, $item := . }}
{
"@type": "Question",
"name": {{ $item.question | jsonify }},
"acceptedAnswer": {
"@type": "Answer",
"text": {{ $item.answer | jsonify }}
}
}{{ if lt (add $i 1) $len }},{{ end }}
{{- end }}
]
}
</script>
{{- end }}