-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.33 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="app">
<span v-on:state="stateChanged"></span>
<initial-screen v-if="status === 'initial'"></initial-screen>
<waiting-screen v-if="status === 'waiting-players'"></waiting-screen>
<board v-if="status === 'playing'"></board>
</div>
</body>
<script src="node_modules/sortablejs/Sortable.min.js"></script>
<script src="node_modules/vue/dist/vue.js"></script>
<script src="node_modules/deepstream.io-client-js/dist/deepstream.js"></script>
<script src="shared-state.js"></script>
<script src="view.js"></script>
<script src="state.js"></script>
<script src="game.js"></script>
<script src="initial-screen.js"></script>
<script src="waiting-screen.js"></script>
<script src="player-status.js"></script>
<script src="board.js"></script>
<script src="index.js"></script>
</html>