-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataset.html
More file actions
49 lines (47 loc) · 1.96 KB
/
Copy pathdataset.html
File metadata and controls
49 lines (47 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dataset — schema.org app</title>
<link rel="stylesheet" href="./app.css" />
</head>
<body>
<!-- JSON-LD data island -->
<script type="application/ld+json" id="data">
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "Global Solid Pod Adoption Metrics 2020–2026",
"image": "https://picsum.photos/seed/solid-pod-adoption-data/800/450",
"description": "A longitudinal dataset tracking Solid Pod deployments, active user accounts, and data volume across public, private, and community-hosted providers. Covers 38 countries with monthly granularity from January 2020 through March 2026. Includes pod-to-pod data migration events and application interoperability metrics.",
"creator": "Web Foundation Data Lab",
"datePublished": "2026-04-01",
"license": "https://creativecommons.org/licenses/by/4.0/",
"keywords": "solid, pods, open data, data sovereignty, decentralised web, linked data",
"url": "https://data.webfoundation.org/solid-pod-adoption-2020-2026"
}
</script>
<main id="app"></main>
<!-- per-type config: this is the ONLY thing that changes between apps -->
<script>
window.APP = {
type: "Dataset",
titleProp: "name",
icon: "🗄️",
accent: "#059669",
fields: [
{ prop: "name", label: "Title", type: "text" },
{ prop: "image", label: "Preview", type: "image" },
{ prop: "description", label: "About", type: "textarea" },
{ prop: "creator", label: "Creator", type: "text" },
{ prop: "datePublished", label: "Published", type: "text" },
{ prop: "license", label: "License", type: "url" },
{ prop: "keywords", label: "Keywords", type: "text" },
{ prop: "url", label: "Download", type: "url" },
],
};
</script>
<script src="./app.js"></script>
</body>
</html>