mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-28 19:27:40 +02:00
schema
This commit is contained in:
+68
-13
@@ -10,19 +10,74 @@ const { title, description } = Astro.props;
|
|||||||
|
|
||||||
const schema = JSON.stringify({
|
const schema = JSON.stringify({
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "Person",
|
"@graph": [
|
||||||
name: "Albert",
|
{
|
||||||
alternateName: "skidoodle",
|
"@type": "ProfilePage",
|
||||||
url: "https://albert.lol/",
|
"@id": "https://albert.lol/#webpage",
|
||||||
image: "https://albert.lol/static/preview.png",
|
"url": "https://albert.lol/",
|
||||||
jobTitle: "Developer and Tech Enthusiast",
|
"lastReviewed": new Date().toISOString().split("T")[0],
|
||||||
description: description,
|
"mainEntity": {
|
||||||
knowsAbout: ["Web Development", "TypeScript", "Go", "Homelab", "Linux", "Open Source Projects"],
|
"@id": "https://albert.lol/#person",
|
||||||
sameAs: ["https://github.com/skidoodle", "https://steamcommunity.com/id/_albert", "https://discord.com/users/637745537369767936"],
|
},
|
||||||
worksFor: {
|
},
|
||||||
"@type": "Organization",
|
{
|
||||||
name: "Personal Projects / Open Source",
|
"@type": "Person",
|
||||||
},
|
"@id": "https://albert.lol/#person",
|
||||||
|
"name": "albert",
|
||||||
|
"alternateName": "skidoodle",
|
||||||
|
"url": "https://albert.lol/",
|
||||||
|
"image": {
|
||||||
|
"@type": "ImageObject",
|
||||||
|
"url": "https://albert.lol/static/preview.png",
|
||||||
|
"caption": "albert",
|
||||||
|
},
|
||||||
|
"jobTitle": "Developer and Tech Enthusiast",
|
||||||
|
"description": description,
|
||||||
|
"sameAs": "https://github.com/skidoodle",
|
||||||
|
"knowsAbout": [
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "TypeScript",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q978185",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Go",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q37227",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Linux",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q388",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Web Development",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q386275",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "DevOps",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q3025536",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Homelab",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q750110",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Open Source",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q39162",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Thing",
|
||||||
|
"name": "Technology",
|
||||||
|
"sameAs": "https://www.wikidata.org/wiki/Q11016",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
});
|
});
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user