summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-10-25 07:14:27 -0400
committerDaniel Micay <danielmicay@gmail.com>2020-10-25 07:14:27 -0400
commit09b82895e00278c6f5fde75e8af47480d8979647 (patch)
tree9823218724872ee4e677f68de60849e64f19177a
parenta7b7885f55e403318adc24ceaafc0a875e0d70c4 (diff)
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.
-rw-r--r--static/contact.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/static/contact.html b/static/contact.html
index ae33b755..1be2c04e 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"
+ ]
+ }
}
</script>
</body>