Edit: Construction page and media
This commit is contained in:
88
layouts/partials/json-ld.html
Normal file
88
layouts/partials/json-ld.html
Normal 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>
|
||||
Reference in New Issue
Block a user