-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
58 lines (58 loc) · 2.07 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
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,viewport-fit=cover"
/>
<meta name="theme-color" content="#ffffff" />
<meta
name="description"
content="A short ride. A very long way down. An illustrated trolley game about useful machines, difficult choices, and who keeps the controls."
/>
<meta property="og:title" content="trolley." />
<meta
property="og:description"
content="A short ride. A very long way down."
/>
<title>trolley. — keep your hands on the controls</title>
<link rel="icon" href="./assets/favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./game.css" />
<script type="module" src="./game.js"></script>
</head>
<body>
<a href="#decision" class="skip-link">Skip to the decision</a>
<header class="toolbar">
<a class="wordmark" href="./">trolley<span>.</span></a>
<span class="brand-note">A better tomorrow. Please hold.</span>
<nav aria-label="Game controls">
<button id="history-button" aria-label="Your run record">Record</button
><button id="settings-button" aria-label="Settings and privacy">
Settings</button
><button id="pause-button" aria-label="Pause the journey">Pause</button>
</nav>
</header>
<div id="workspace">
<main id="app"><div id="scene" aria-hidden="true"></div></main>
<aside id="assistant-panel" hidden></aside>
<aside id="telemetry-panel" hidden></aside>
</div>
<div
id="announcer"
class="sr-only"
role="status"
aria-live="polite"
aria-atomic="true"
></div>
<div id="notice" class="notice" role="status" hidden></div>
<dialog id="drawer" aria-labelledby="drawer-title"></dialog>
<noscript
><main class="no-script">
<h1>trolley.</h1>
<p>This illustrated game needs JavaScript. No account is required.</p>
<a href="./docs/METHODOLOGY_V2.md">Read the methodology</a>
</main></noscript
>
</body>
</html>