-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
48 lines (47 loc) · 1.56 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
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta name="title" content="Logic Pad" />
<meta
name="description"
content="A modern, open-source web app for grid-based puzzles."
/>
<meta
name="keywords"
content="logic, puzzle, islands of insight, grid, custom, editor, solve, create, rule, symbol, tile, cell"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="author" content="Lysine" />
<meta name="theme-color" content="#414558" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="preload" as="image" href="/logo.svg" fetchpriority="high" />
<title>Logic Pad</title>
</head>
<body oncontextmenu="return false;">
<div id="app"></div>
<script>
window.global ||= window;
</script>
<script src="/z3-built.js" fetchpriority="low" defer></script>
<script
type="module"
src="/src/client/main.tsx"
fetchpriority="high"
></script>
<!-- Cloudflare Web Analytics -->
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "ccaf7e9ffebb49a5ac7033f69753d501"}'
></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>