2023-05-19 16:03:19 +02:00
|
|
|
{{ $logoresource := resources.Get ($.Site.Params.logoNormal | replaceRE "^/" "") }}
|
2023-05-18 20:33:08 +02:00
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "https://schema.org/",
|
2023-05-19 16:03:19 +02:00
|
|
|
"@type": "NGO",
|
2023-06-22 11:18:51 +02:00
|
|
|
"id": "{{ .Site.BaseURL }}#organization",
|
2023-05-18 20:33:08 +02:00
|
|
|
"url": "{{ .Site.BaseURL }}",
|
2023-05-19 16:03:19 +02:00
|
|
|
"name": "{{ .Site.Title }}",
|
|
|
|
"logo": {
|
|
|
|
"@type": "ImageObject",
|
|
|
|
"url": "{{ $logoresource.Permalink | default .Site.Params.textNoValue }}",
|
|
|
|
"height": "{{ $logoresource.Height }}",
|
|
|
|
"width": {{ printf "%d" $logoresource.Width }}
|
|
|
|
},
|
|
|
|
{{- with .Site.Params.address -}}
|
|
|
|
"address": {
|
|
|
|
"@type": "PostalAddress",
|
|
|
|
"streetAddress": "{{ .street | default .Site.Params.textNoValue }}",
|
|
|
|
"addressLocality": "{{ .city | default .Site.Params.textNoValue }}",
|
|
|
|
"addressRegion": "{{ .region | default .Site.Params.textNoValue }}",
|
|
|
|
"addressCountry": "{{ .country | default .Site.Params.textNoValue }}",
|
|
|
|
"postalCode": "{{ .postalcode | default .Site.Params.textNoValue }}"
|
|
|
|
},
|
|
|
|
{{- end -}}
|
2023-06-15 11:53:46 +02:00
|
|
|
"sameAs": {{ .Site.Params.organization_sameas }},
|
2023-06-23 13:56:12 +02:00
|
|
|
"telephone":"{{ .Site.Params.phone }}",
|
|
|
|
"contactPoint" : [
|
|
|
|
{
|
|
|
|
"@type" : "ContactPoint",
|
|
|
|
"contactType" : "Bestuur",
|
|
|
|
"email" : "bestuur@nluug.nl",
|
|
|
|
"availableLanguage": ["en", "nl"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"@type" : "ContactPoint",
|
|
|
|
"contactType" : "Buro",
|
|
|
|
"email" : "buro@nluug.nl",
|
|
|
|
"availableLanguage": ["en", "nl"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"@type" : "ContactPoint",
|
|
|
|
"contactType" : "Programmacommissie",
|
|
|
|
"email" : "pc@nluug.nl",
|
|
|
|
"availableLanguage": ["en", "nl"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"@type" : "ContactPoint",
|
|
|
|
"contactType" : "Webmasters",
|
|
|
|
"email" : "website@nluug.nl",
|
|
|
|
"availableLanguage": ["en", "nl"]
|
|
|
|
}
|
|
|
|
]
|
2023-05-18 20:33:08 +02:00
|
|
|
}
|
|
|
|
</script>
|