-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 730 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (25 loc) · 730 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
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width"/>
<meta name="description" content="A terminal-like, incremental-ish game. Under construction.">
<meta name="author" content="Koen Missault">
<title>Cash.cmd</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<style id="customStyle"></style>
</head>
<body>
<div id="container">
<div id="terminal">
<div id="topBar"></div>
</div>
</div>
</body>
<script data-main="assets/js/config" src="assets/js/lib/require.js"></script>
<script>
require(["config"], function(){
require(["game/main"]);
})
</script>
</html>