-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
66 lines (61 loc) · 2.26 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tower of Hanoi</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="{min.css}" />
<!-- this sniffer is just for debugging purposes. This line should be commented. -->
<!-- <script type="text/javascript" src="js/development/interval-sniffer.js"></script> -->
</head>
<body>
<header class="centred-container">
<div class="developed-by">
Developed by <strong class="developers-name">Rafael Rubem Rossi Souza Guerreiro</strong>.
</div>
</header>
<main class="centred-container main-container">
<section class="game-setup">
<div class="game-setup-container row">
</div>
<button class="init-game btn btn-block btn-lg btn-success" disabled="disabled">
Build game board
</button>
</section>
<section class="game-winner hide">
<h1 class="text-center">
The winner is <span class="game-winner-name"></span>!
<h1>
</section>
<section class="game-main-container hide">
<div class="game-controller-container row">
<div class="col-xs-4">
<button class="btn btn-success btn-block play-controller play">
<span class="play">
<span class="glyphicon glyphicon-play"></span>
<span class="hidden-xs">Play (press spacebar)</span>
</span>
<span class="pause">
<span class="glyphicon glyphicon-pause"></span>
<span class="hidden-xs">Pause (press spacebar)</span>
</span>
</button>
</div>
<div class="col-xs-4">
<button class="btn btn-danger btn-block quit">
<span class="glyphicon glyphicon-stop"></span>
<span class="hidden-xs">Quit this instance</span>
</button>
</div>
<div class="col-xs-4">
<div class="timer">00:00.000</div>
</div>
</div>
<div class="game-container">
</div>
</section>
</main>
<script type="text/javascript" src="{min.js}"></script>
</body>
</html>