-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 1.03 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
<!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="#d7e5ee">
<title>Endless City</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" href="/favicon.ico" sizes="16x16">
</head>
<body>
<canvas id="city-canvas" aria-label="Interactive view of an endless city"></canvas>
<div id="city-interface" class="city-interface" data-state="loading">
<section id="blocking-overlay" class="blocking-overlay" aria-label="City status">
<p id="loading-status" class="status-message" role="status">Loading city 0/29</p>
<div id="error-panel" class="error-panel" role="alert" hidden>
<h1>City unavailable</h1>
<p id="error-message"></p>
<button id="retry-button" class="retry-button" type="button">Retry</button>
</div>
</section>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>