Pre-launch: First articles

This commit is contained in:
2025-12-10 15:55:30 +01:00
parent 776da9dc4b
commit 9bc1b94866
56 changed files with 95 additions and 60 deletions

View File

@@ -0,0 +1,21 @@
{{- 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 }}