-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
92 lines (92 loc) · 3.22 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
91
92
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<meta name="author" content="Matthijs Groen" />
<meta
name="description"
content="A block sorting puzzle game, without ads or tracking. Becomes very challenging, with different level types and seasonal themes. Offline playable."
/>
<meta property="og:title" content="Block Sort" />
<meta property="og:type" content="website.game" />
<meta
property="og:url"
content="https://matthijsgroen.github.io/block-sort/"
/>
<meta
property="og:image"
content="https://matthijsgroen.github.io/block-sort/og-image.jpg"
/>
<meta
property="og:description"
content="A block sorting puzzle game, without ads or tracking. Becomes very challenging, with different level types and seasonal themes. Offline playable."
/>
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Block Sort" />
<link
rel="icon"
type="image/png"
href="https://matthijsgroen.github.io/block-sort/pwa-64x64.png"
/>
<title>Block Sort</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Block Sort",
"url": "https://matthijsgroen.github.io/block-sort/",
"description": "A block sorting puzzle game. No ads, cookies, tracking or payments. Just the pure fun!",
"image": "https://matthijsgroen.github.io/block-sort/og-image.jpg",
"applicationCategory": "Game",
"applicationSubCategory": "Puzzle",
"operatingSystem": "Web",
"softwareVersion": "APP_VERSION",
"storageRequirements": "18MB",
"releaseNotes": "https://github.com/matthijsgroen/block-sort/blob/main/CHANGELOG.md",
"license": "https://github.com/matthijsgroen/block-sort/blob/main/LICENSE",
"creator": {
"@type": "Person",
"name": "Matthijs Groen",
"url": "https://github.com/matthijsgroen/",
"image": "https://gravatar.com/avatar/990b740fdf7c52fb94b7a8a42362bfa806abdd7e15a05736e3562ad6e759b02a?s=600"
},
"featureList": [
"Offline capable",
"Easy to very hard difficulty",
"Seasonal themes"
],
"offers": {
"@type": "Offer",
"description": "Free",
"price": 0.0,
"priceCurrency": "USD"
},
"potentialAction": {
"@type": "PlayGameAction",
"gameAvailabilityType": "FullGameAvailability",
"target": {
"@type": "EntryPoint",
"actionPlatform": [
"GenericWebPlatform",
"MobileWebPlatform",
"DesktopWebPlatform"
],
"urlTemplate": "https://matthijsgroen.github.io/block-sort/"
}
}
}
</script>
</body>
</html>