From 0bb47e73ba88766e82ca896fae67008cb152070b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 26 May 2022 15:29:04 -0400 Subject: [PATCH] More aggressive content tagging --- jsonld_templates/website.jsonld | 10 -- static/person.jsonld | 163 +++++++++++++++++--------------- 2 files changed, 85 insertions(+), 88 deletions(-) diff --git a/jsonld_templates/website.jsonld b/jsonld_templates/website.jsonld index 707af5f..ae99ea3 100644 --- a/jsonld_templates/website.jsonld +++ b/jsonld_templates/website.jsonld @@ -1,14 +1,4 @@ [ - { - "@context": "http://schema.org", - "@type": "Webpage", - "specialty": "{{description}}", - "mainContentOfPage": { - "@context": "http://schema.org/", - "@type": "WebPageElement", - "cssSelector": ".page-content" - } - }, { "@context": "http://schema.org", "@type": "WebSite", diff --git a/static/person.jsonld b/static/person.jsonld index f572f08..9a90f6e 100644 --- a/static/person.jsonld +++ b/static/person.jsonld @@ -1,84 +1,91 @@ { - "@context": "http://www.schema.org", - "@type": "person", - "name": "Evan Pratten", - "alternateName": "ewpratten", - "nationality": "Canadian", - "jobTitle": "Pipeline Software Developer", - "description": "Software Developer", - "callSign": [ - "VA3ZZA", - "VA3UJF", - "VB3YEET", - "VG3ZZA", - "VG3UJF" - ], - "parent": [ - { - "@type": "person", - "name": "Warren Pratten", - "alternateName": "awpratten", - "description": "Musical artist", - "gender": "male" - } - ], - "gender": "male", - "url": "https://va3zza.com", - "image": "https://avatars.githubusercontent.com/u/21065412", - "birthPlace": { - "@type": "Place", + "@context": "http://schema.org", + "@type": "Webpage", + "mainContentOfPage": { + "@context": "http://www.schema.org", + "@type": "person", + "name": "Evan Pratten", + "alternateName": [ + "ewpratten", + "Evan" + ], + "nationality": "Canadian", + "jobTitle": "Pipeline Software Developer", + "description": "Evan Pratten is a Canadian software developer. He is also known for his work in amateur radio, robotics, animation, and his musical history.", + "callSign": [ + "VA3ZZA", + "VA3UJF", + "VB3YEET", + "VG3ZZA", + "VG3UJF" + ], + "parent": [ + { + "@type": "person", + "name": "Warren Pratten", + "alternateName": "awpratten", + "description": "Musical artist", + "gender": "male" + } + ], + "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": "London", + "addressLocality": "Oakville", "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" - ], - "mainEntityOfPage": "True" -} \ No newline at end of file + "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" + ], + "mainEntityOfPage": "True" + } +}