-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
24 lines (24 loc) · 818 Bytes
/
Copy pathgallery.html
File metadata and controls
24 lines (24 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HARMLESS — DESIGN GALLERY</title>
<link rel="stylesheet" href="/src/style.css" />
<link rel="stylesheet" href="/src/viewer/viewer.css" />
</head>
<body>
<div id="app">
<canvas id="scene"></canvas>
<div id="viewer-title">DESIGN GALLERY</div>
<div id="viewer-hud"></div>
<div id="viewer-controls">
<span id="viewer-keys">S SCALE · V VIEW · ←/→ FOCUS · 0 ALL</span>
<a id="viewer-other" href="/viewer">COMBAT VIEWER →</a>
<!--BUILD-FOOTER-->
</div>
<div id="scanlines"></div>
</div>
<script type="module" src="/src/viewer/gallery-main.ts"></script>
</body>
</html>