From 5a64788339afd750c3853468f89d275cf8fa49cd Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 8 May 2022 09:34:39 -0400 Subject: [PATCH] add more content to jsonld --- static/person.jsonld | 71 ++++++++++++++++++++++++++++++++++++++++++++ templates/index.html | 34 ++------------------- 2 files changed, 73 insertions(+), 32 deletions(-) create mode 100644 static/person.jsonld diff --git a/static/person.jsonld b/static/person.jsonld new file mode 100644 index 0000000..e41b5a9 --- /dev/null +++ b/static/person.jsonld @@ -0,0 +1,71 @@ +{ + "@context": "http://www.schema.org", + "@type": "person", + "name": "Evan Pratten", + "nationality": "Canadian", + "jobTitle": "Pipeline Software Developer", + "description":"Software Developer", + "callSign": [ + "VA3ZZA", + "VA3UJF" + ], + "gender": "male", + "url": "https://va3zza.com", + "image": "https://avatars.githubusercontent.com/u/21065412", + "birthPlace": { + "@type": "Place", + "address": { + "@type": "PostalAddress", + "addressLocality": "London", + "addressRegion": "ON", + "addressCountry": "Canada" + } + }, + "address": { + "@type": "PostalAddress", + "addressLocality": "Oakville", + "addressRegion": "ON", + "addressCountry": "Canada" + }, + "alumniOf": [ + { + "@type": "HighSchool", + "name": "H.B. Beal Secondary School", + "sameAs": "https://en.wikipedia.org/wiki/H._B._Beal_Secondary_School" + }, + { + "@type": "MiddleSchool", + "name": "Lester B. Pearson School for the Arts", + "sameAs": "https://en.wikipedia.org/wiki/Lester_B._Pearson_School_for_the_Arts" + }, + { + "@type": "ElementarySchool", + "name": "St. Michael Catholic Elementary School", + "sameAs": "https://mil.ldcsb.ca/" + } + ], + "worksFor": [ + { + "@type": "Organization", + "name": "Industrial Brothers", + "sameAs": [ + "https://www.linkedin.com/company/industrial-brothers", + "https://twitter.com/IndustrialBros", + "https://www.instagram.com/industrialbrothers/", + "https://www.facebook.com/industrialbrothers/" + ] + } + ], + "email": "ewpratten@gmail.com", + "birthDate": "2003-06-01", + "sameAs": [ + "https://github.com/ewpratten", + "https://www.linkedin.com/in/ewpratten", + "https://www.instagram.com/evanpratten", + "https://keybase.io/ewpratten", + "https://gitlab.com/ewpratten", + "https://twitter.com/ewpratten", + "https://www.wikidata.org/wiki/Q111170999" + ], + "mainEntity": "https://www.wikidata.org/wiki/Q111170999" +} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 2e4df3b..49bbf58 100644 --- a/templates/index.html +++ b/templates/index.html @@ -10,38 +10,8 @@