From f7800248f1305a90a7361fd0488df436548d0f16 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Fri, 23 Jun 2023 13:56:12 +0200 Subject: [PATCH] Organisatie uitgebreid met contactpunten --- .../partials/schemas/schema_Organization.html | 28 ++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/themes/nluug/layouts/partials/schemas/schema_Organization.html b/themes/nluug/layouts/partials/schemas/schema_Organization.html index 4fdd1a5..ace340b 100644 --- a/themes/nluug/layouts/partials/schemas/schema_Organization.html +++ b/themes/nluug/layouts/partials/schemas/schema_Organization.html @@ -23,6 +23,32 @@ }, {{- end -}} "sameAs": {{ .Site.Params.organization_sameas }}, - "telephone":"{{ .Site.Params.phone }}" + "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"] + } + ] }