-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (80 loc) · 4.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html class="render" resource="http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper" context="http://rdf2h.github.io/2016/generic-rdf2h-Renderers/FullPage">
<head>
<title>This will be replaced when the data is loaded</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="renderers" href="schema-org-renderers.ttl" type="text/turtle" />
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://retog.github.io/ext-rdflib/0.3.5/rdf.js"></script>
<script src="https://rdf2h.github.io/ld2h/2.2.0/ld2h.js"></script>
<script id="data" type="text/turtle">
@prefix s: <http://schema.org/> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper>
a <http://schema.org/Person> ;
<http://schema.org/additionalName>
"Lee"^^<http://www.w3.org/2001/XMLSchema#string> ;
s:address [
s:addressCountry "US";
s:addressLocality "Pasadena";
s:addressRegion "CA";
s:postalCode "91104";
s:streetAddress "2311 North Los Robles Avenue, Apartment 4A"
];
s:gender s:male;
<http://schema.org/familyName> "Cooper"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://schema.org/givenName> "Sheldon"^^<http://www.w3.org/2001/XMLSchema#string> ;
<http://schema.org/jobTitle> "theoretical physicist"^^<http://www.w3.org/2001/XMLSchema#string> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/bernadette-rostenkowski> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/rajesh-koothrappali> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/leonard-hofstadter> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/amy-farrah-fowler> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/penny> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/howard-wolowitz> ;
<http://schema.org/parent> <http://tbbt-ld.zazukoians.linked.guru/data/person/mary-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/mary-cooper>
a s:Person;
s:familyName "Cooper";
s:givenName "Mary";
<http://schema.org/children> <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/bernadette-rostenkowski>
a s:Person;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/howard-wolowitz>
a s:Person;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/rajesh-koothrappali>
a s:Person;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> ;
s:givenName "Rajesh";
s:familyName "Koothrappali" .
<http://tbbt-ld.zazukoians.linked.guru/data/person/penny>
a s:Person;
s:name "Penny" ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> ;
<http://schema.org/spouse> <http://tbbt-ld.zazukoians.linked.guru/data/person/leonard-hofstadter>.
<http://tbbt-ld.zazukoians.linked.guru/data/person/leonard-hofstadter>
a s:Person;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/stuart-bloom>
a s:Person;
s:givenName "Stuart" ;
s:familyName "Bloom" ;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
<http://tbbt-ld.zazukoians.linked.guru/data/person/amy-farrah-fowler>
a s:Person;
s:knows <http://tbbt-ld.zazukoians.linked.guru/data/person/sheldon-cooper> .
</script>
<script type="text/javascript">
$(function () {
LD2h.expand().then(function() {
console.log("finsihed expanding");
});
});
</script>
</head>
<body>
This will be replaced by rendered RDF.
</body>
</html>