forked from MaxBittker/sandspiel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (69 loc) · 2.24 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
<!DOCTYPE html>
<html>
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<meta
name="Description"
content="Sandspiel is a falling sand game that provides a relaxing and creative place to play with elements like sand, water, plant, and fire. Enjoy on your phone or computer, and share drawings with your friends!"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="msapplication-starturl" content="/" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/site.webmanifest" />
<link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#ccbcbc" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ccbcbc" />
<head>
<meta charset="utf-8" />
<title>sandspiel</title>
<link rel="manifest" href="/manifest.json" />
<link
href="https://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="/styles.css" />
<!-- Firebase App is always required and must be first -->
<script src="/__/firebase/6.0.1/firebase-app.js"></script>
<!-- Add additional services that you want to use -->
<script src="/__/firebase/6.0.1/firebase-functions.js"></script>
<script src="/__/firebase/6.0.1/firebase-storage.js"></script>
<script src="/__/firebase/6.0.1/firebase-auth.js"></script>
<script src="/__/firebase/init.js"></script>
</head>
<body>
<div id="background">
<div id="ui"></div>
<div id="fps"></div>
<canvas id="sand-canvas"></canvas> <canvas id="fluid-canvas"></canvas>
</div>
</body>
<script
src="https://browser.sentry-cdn.com/4.2.3/bundle.min.js"
crossorigin="anonymous"
></script>
<script>
Sentry.init({
dsn: "https://[email protected]/1331284",
release: "1.1.0"
});
</script>
</html>