-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
75 lines (64 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./src/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="./css/animations.css">
<link rel="stylesheet" href="./css/style.css">
<title>CMGT ARCADE</title>
</head>
<body>
<container>
<background>
<img src="images/grid.gif">
<!-- video stutters <video id="bgvideo" src="./images/grid.mp4" autoplay loop muted></video>-->
</background>
<main-application>
<!-- added by app.ts -->
<!-- header met ascii logo -->
<!-- grid -->
<!-- paging -->
<!-- redits -->
</main-application>
</container>
<footer>
<div>Press 🟡 🟡 to return here from any game</div>
</footer>
<div id="logo"></div>
<warning>
<h3>HR CMGT ARCADE SERVER</h3>
<p>You are viewing the Game Selection of the <a style="color:magenta" href="https://cmgt.hr.nl/#/home">HR CMGT</a> Arcade Cabinet</p>
<p><i class="fas fa-undo fa-3x"></i></p>
<p>Please rotate your device to landscape mode</p>
<p><span class="small">These games were developed for an Arcade Machine, and may not support touchscreens.</span></p>
</warning>
<script defer type="module" src="/src/ts/app.ts"></script>
</body>
</html>
<!-- BACKUP OLD MENU -->
<!--
<div id="player-menu">
<div class="selected cursor">
<i class="fas fa-male"></i>
Singleplayer
</div>
<div>
<i class="fas fa-male"></i>
<i class="fas fa-male"></i>
Multiplayer
</div>
</div>
<div id="genre-menu">
<div class="selected">All</div>
<div>Strategy</div>
<div>Action</div>
<div>Puzzle</div>
<div>Shooter</div>
<div>RPG</div>
<div>Simulation</div>
<div>Stealth</div>
<div>Race</div>
<div>Sports</div>
</div> -->