Edit: Construction page and media

This commit is contained in:
2026-01-12 12:11:21 +01:00
parent bda87b451d
commit 7e386af76b
23 changed files with 563 additions and 48 deletions

View File

@@ -0,0 +1,88 @@
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "{{ .Site.BaseURL }}#organization",
"name": "Mantelzorgwoning.info",
"url": "{{ .Site.BaseURL }}",
"logo": {
"@type": "ImageObject",
"url": "{{ .Site.BaseURL }}images/logoDark.svg"
},
"description": "Onafhankelijke informatiebron over mantelzorgwoningen, wet- en regelgeving in Nederland.",
"founder": {
"@type": "Person",
"name": "Machiel Heinen"
},
"parentOrganization": {
"@type": "Organization",
"name": "StartIT",
"url": "https://start-it.nl"
},
"address": {
"@type": "PostalAddress",
"addressCountry": "NL"
},
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+31-6-57969491",
"contactType": "customer service",
"email": "info@mantelzorgwoning.info",
"availableLanguage": ["Dutch", "English"]
},
{
"@type": "ContactPoint",
"email": "info@start-it.nl",
"contactType": "technical support"
}
],
"sameAs": [
"https://start-it.nl"
]
},
{
"@type": "WebSite",
"@id": "{{ .Site.BaseURL }}#website",
"url": "{{ .Site.BaseURL }}",
"name": "Mantelzorgwoning.info",
"publisher": {
"@id": "{{ .Site.BaseURL }}#organization"
},
"inLanguage": "{{ .Lang }}",
"description": "{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "{{ .Site.BaseURL }}"
}
{{ range $index, $element := .Ancestors.Reverse }}
,{
"@type": "ListItem",
"position": {{ add $index 2 }},
"name": "{{ .Title }}",
"item": "{{ .Permalink }}"
}
{{ end }}
,{
"@type": "ListItem",
"position": {{ add (len .Ancestors) 2 }},
"name": "{{ .Title }}",
"item": "{{ .Permalink }}"
}
]
}
</script>