-
Notifications
You must be signed in to change notification settings - Fork 1
/
timetable.html
146 lines (140 loc) · 4.76 KB
/
timetable.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link href="index.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="assets/logo_games_lan.svg">
<meta http-equiv="refresh" content="60">
<title>Timetable | Games & LAN</title>
</head>
<body>
<!--<header>-->
<!--</header> -->
<!--<section id="announcements">-->
<!-- <h1 class="colored center" style="font-size: 40px; text-align: center">Announcements</h1>-->
<!--</section>-->
<!--<section id="announcement-content">-->
<!-- <h3 class="center" style="text-align: center">Doors open at 17:00 for LAN guests and the general board game area opens at 18:00!-->
<!--</h3>-->
<!--</section>-->
<section id="head">
<h1 class="colored center" style="font-size: 40px; text-align: center">TimetAble</h1>
</section>
<section id="friday">
<table class="styled-table" style="width: 100%">
<thead>
<tr>
<td class="colored">Friday</td>
</tr>
<tr>
<td style="width: 150px"><img class="center" src="assets/logo_games_lan.svg" height="50px"></td>
<td>Time</td>
<td>What</td>
<td>Where</td>
<td>Infos</td>
</tr>
</thead>
<tbody>
<tr>
<td><img class="center" src="assets/dice.svg" height="50px"></td>
<td>20:00</td>
<td>Shadow Run</td>
<td>Pen & Paper Area</td>
<td>Register at Check-In</td>
</tr>
<tr>
<td><img class="center" src="assets/laptop.svg" height="50px"></td>
<td>24:00</td>
<td>Among us <br/>
<span class="smallerfont">(in the same room; sitting in a circle)</span></td>
<td>Pen & Paper Area</td>
<td>Just show up :)</td>
</tr>
</tbody>
</table>
</section>
<section id="saturday">
<div>
<table class="styled-table">
<thead>
<tr>
<td class="colored">Saturday</td>
</tr>
<tr>
<td style="width: 150px"><img class="center" src="assets/logo_games_lan.svg" height="50px"></td>
<td>Time</td>
<td>What</td>
<td>Where</td>
<td>Infos</td>
</tr>
</thead>
<tbody>
<tr>
<td><img class="center" src="assets/cards.svg" height="50px"></td>
<td>TBA</td>
<td>Werewolf</td>
<td>Board Games Area</td>
<td>Just show up</td>
</tr>
<tr>
<td><img class="center" src="assets/grandgarage.svg" height="35px"></td>
<td>early afternoon</td>
<td>Guided Grand Garage Tour</td>
<td>Meet at Check-In</td>
<td>Register at Check-In</td>
</tr>
<tr>
<td><img class="center" src="assets/grandgarage.svg" height="35px"></td>
<td>late afternoon</td>
<td>Guided Grand Garage Tour</td>
<td>Meet at Check-In</td>
<td>Register at Check-In</td>
</tr>
<tr>
<td><img class="center" src="assets/dice.svg" height="50px"></td>
<td>13:00</td>
<td>Dungeons & Dragons
<br/> <span class="smallerfont">for Beginners</span>
<td>Pen & Paper Area</td>
<td>Register at Check-In</td>
</tr>
<tr>
<td><img class="center" src="assets/dice.svg" height="50px"></td>
<td>17:00</td>
<td>Cthulhu <br/>
<span class="smallerfont">Adventure: Filmriss</span>
<td>Pen & Paper Area</td>
<td>Register at Check-In</td>
</tr>
<tr>
<td><img class="center" src="assets/dice.svg" height="50px"></td>
<td>22:00</td>
<td>Dungeons & Dragons
<br/> <span class="smallerfont">for Beginners</span>
<td>Pen & Paper Area</td>
<td>Register at Check-In</td>
</tr>
</tbody>
</table>
</div>
</section>
<hr />
<footer>
<div class="footer-nav">
back to
<a href="./english.html">eN</a>|
<a href="./index.html">de</a>
</div>
<div style="color: #454545">
<br>
by Coding Club Linz,
Birkenweg 16, 4060 Leonding,
info@linz.coderdojo.net
</div>
<script>
setInterval(() => {
location.relaod();
}, 1000 * 60);
</script>
</body>
</html>