-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artemisia / Pujo Puyo</title>
<meta property="og:title" content="Artemisia / Pujo Puyo" />
<meta property="og:description" content="Artemisia is a clone of the puzzle game Puyo Puyo that runs in your browser with online matchmaking." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pujo.lumipakkanen.com/" />
<meta property="og:image" content="https://pujo.lumipakkanen.com/static/artemisia-og.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1219" />
<meta property="og:image:height" content="881" />
<meta property="og:image:alt" content="Two players engaged in a match of Artemisia. The playing fields are filled with panels that are about to disappear in a chain reaction." />
<style>
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');
</style>
<!-- Polyfils -->
<script>
// iOS Safari is missing this one for undocumented reasons...
if (crypto.randomUUID === undefined) {
// https://stackoverflow.com/a/2117523/2800218
// LICENSE: https://creativecommons.org/licenses/by-sa/4.0/legalcode
crypto.randomUUID = () => '10000000-1000-4000-8000-100000000000'.replace(/[018]/g, (c) =>
(
parseInt(c) ^
(crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (parseInt(c) / 4)))
).toString(16)
)
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>