From 09b82895e00278c6f5fde75e8af47480d8979647 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sun, 25 Oct 2020 07:14:27 -0400 Subject: [PATCH] founders -> founder in organization metadata The founders property was replaced with founder as part of the overall replacement of plural property names with singular, even when they can optionally take multiple values. This also drops the array since there's only a single value. --- static/contact.html | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/static/contact.html b/static/contact.html index ae33b7550..1be2c04ec 100644 --- a/static/contact.html +++ b/static/contact.html @@ -139,18 +139,16 @@

"https://github.com/GrapheneOS", "https://reddit.com/u/GrapheneOS" ], - "founders": [ - { - "@type": "Person", - "name": "Daniel Micay", - "email": "daniel.micay@grapheneos.org", - "sameAs": [ - "https://twitter.com/DanielMicay", - "https://github.com/thestinger", - "https://reddit.com/u/DanielMicay" - ] - } - ] + "founder": { + "@type": "Person", + "name": "Daniel Micay", + "email": "daniel.micay@grapheneos.org", + "sameAs": [ + "https://twitter.com/DanielMicay", + "https://github.com/thestinger", + "https://reddit.com/u/DanielMicay" + ] + } }