New: Vergunningcheck online

This commit is contained in:
2026-02-16 10:37:39 +01:00
parent 75f8e29973
commit ab2b980d97
18 changed files with 405 additions and 82 deletions

View File

@@ -23,6 +23,10 @@
},
"address": {
"@type": "PostalAddress",
"streetAddress": "Valkhof 122",
"postalCode": "3772EG",
"addressLocality": "Barneveld",
"addressRegion": "Gelderland",
"addressCountry": "NL"
},
"contactPoint": [

View File

@@ -19,3 +19,24 @@
}
</script>
{{- end }}
{{- with .Params.application }}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
{{- range . }}
"name": {{ .name | jsonify }},
"operatingSystem": {{ .operatingSystem | jsonify }},
"applicationCategory": {{ .applicationCategory | jsonify }},
"description": {{ .description | jsonify }},
"offers": {
"@type": "Offer",
"price": {{ .offers.price | jsonify }},
"priceCurrency": {{ .offers.priceCurrency | jsonify }}
},
"featureList": {{ .featureList | jsonify }}
{{- end }}
}
</script>
{{- end }}