Skip to content

Commit

Permalink
actually fix ld representation (missing context for predicates)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekulno committed Oct 8, 2024
1 parent b2aeaa2 commit 3acb414
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 22 deletions.
3 changes: 2 additions & 1 deletion eirik
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"@type": "https://schema.org/Person",
"@type": "Person",
"@id": "https://ekul.no/eirik",
"@context": "https://schema.org/",
"name": "Eirik Kultorp",
"givenName": "Eirik",
"familyName": "Kultorp",
Expand Down
48 changes: 27 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,33 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Eirik's homepage</title>
<script type="application/ld+json">{
"@context":"https://schema.org",
"@type":"ProfilePage",
"url":"https://ekul.no",
"mainEntity":{
"@type":"Person",
"@id":"https://ekul.no/eirik",
"name":"Eirik Kultorp",
"givenName":"Eirik",
"familyName":"Kultorp",
"alumniOf":"https://www.wikidata.org/wiki/Q1065414",
"knowsAbout":["Computer science","Software engineering","Knowledge representation"],
"sameAs":[
"https://github.com/ekulno",
"https://www.linkedin.com/in/eirik-kultorp-aa0225256/",
"https://triplydb.com/eirik"
],
"homeLocation":"https://www.wikidata.org/wiki/Q585"
},
"name":"Eirik's homepage"
}</script>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "ProfilePage",
"name": "Eirik's homepage",
"url": "https://ekul.no",
"mainEntity": {
"@type": "Person",
"@id": "https://ekul.no/eirik",
"name": "Eirik Kultorp",
"givenName": "Eirik",
"familyName": "Kultorp",
"alumniOf": "https://www.wikidata.org/wiki/Q1065414",
"knowsAbout": [
"Computer science",
"Software engineering",
"Knowledge representation"
],
"sameAs": [
"https://github.com/ekulno",
"https://www.linkedin.com/in/eirik-kultorp-aa0225256/",
"https://triplydb.com/eirik"
],
"homeLocation": "https://www.wikidata.org/wiki/Q585"
}
}
</script>
</head>

<body>
Expand Down

0 comments on commit 3acb414

Please sign in to comment.