-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
48 lines (46 loc) · 1.88 KB
/
Copy pathblog.html
File metadata and controls
48 lines (46 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Blog — 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": "Blog",
"name": "Prague Bytes — Tech, Culture & the Decentralised Web",
"image": "https://picsum.photos/seed/blog-prague-bytes/600/400",
"description": "A bilingual Czech-English blog exploring the intersection of technology, urban culture and the decentralised web — written from Prague. Topics range from Solid pod development and semantic web standards to local startup spotlights, open-data civic hacks, and deep dives into Czech tech history (did you know the word 'robot' was born in a Prague play?). Published weekly since 2023 by a small editorial collective of developers, designers and writers who believe the next web should belong to its users. Reader contributions and guest posts welcome.",
"author": {
"@type": "Person",
"name": "Tereza Malá"
},
"url": "https://praguebytes.cz",
"inLanguage": "cs,en"
}
</script>
<main id="app"></main>
<!-- per-type config: this is the ONLY thing that changes between apps -->
<script>
window.APP = {
type: "Blog",
titleProp: "name",
icon: "📝",
accent: "#0ea5e9",
fields: [
{ prop: "name", label: "Title", type: "text" },
{ prop: "image", label: "Image", type: "image" },
{ prop: "description",label: "Description", type: "textarea" },
{ prop: "author", label: "Author", type: "text", display: "o.name" },
{ prop: "url", label: "Website", type: "url" },
{ prop: "inLanguage", label: "Language", type: "text" },
],
};
</script>
<script src="./app.js"></script>
</body>
</html>