-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (66 loc) · 2.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Towerfall Tournament</title>
<link rel="stylesheet" href="//brick.a.ssl.fastly.net/libre+caslon+text:400,400i,700">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- <div class="block-grid">
<div class="column-6 pre-3">
<h1 class="title">PDX Towerfall</h1>
</div>
</div>
-->
<!-- Add players to the tournament -->
<section class="fullscreen is-active" data-url="/">
<div class="block-grid">
<div class="column-6 pre-3">
<!-- Event bindings in controllers/players.js -->
<header>
<h1 class="title">PDX Towerfall</h1>
<form action="" class="new-player">
<input class="new-player-nickname" placeholder="Nickname" autofocus autocomplete="off">
<input class="new-player-email" placeholder="Email" autocomplete="off">
<input type="submit" hidden>
</form>
</header>
<!-- Populated by templates/players.dot -->
<section class="players-section">
<h2 class="subtitle">Players</h2>
<div data-view="players"></div>
</section>
<button class="create-schedule js-create-schedule">Create Schedule</button>
</div>
</div>
</section>
<!-- View Leaderboard and Schedule -->
<section class="fullscreen" data-url="/schedule">
<div class="schedule-wrap">
<!-- Event bindings in controllers/schedule.js -->
<!-- Populated by templates/schedule.dot -->
<div data-view="schedule"></div>
</div>
<section class="leaderboard-wrap">
<!-- <header>
<h3 class="section-title">Leaderboard</h3>
</header> -->
<!-- Populated by templates/leaderboard.dot -->
<div data-view="leaderboard"></div>
</section>
</div>
</section>
<!-- View Awards -->
<section class="fullscreen" data-url="awards">
<header>
<h1>Awards</h1>
</header>
<!-- Populated by templates/awards.dot -->
<section class="awards" data-view="awards"></section>
</section>
<!-- Load app bundle -->
<script src="./bundle.js"></script>
</body>
</html>