blob: 1f1ee9300bdbc306c191cee7024e1b31e54c80ea (
plain)
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
|
<? include('assemblies/banner.phtml') ?>
<div class="container-fluid rooms">
<h1>Live-Streams</h1>
<div class="room-group">
<h2>Lecture Rooms</h2>
<ul>
<? foreach(array('saal1', 'saal2', 'saalg', 'saal6') as $room): ?>
<li class="<?=h($room)?>">
<a href="<?=h(link_room($room))?>"><?=h($rooms[$room])?></a>
</li>
<? endforeach ?>
</ul>
</div>
<div class="room-group">
<h2>Live DJ Sets</h2>
<ul>
<? foreach(array('lounge', 'ambient') as $room): ?>
<li class="<?=h($room)?>">
<a href="<?=h(link_room($room))?>"><?=h($rooms[$room])?></a>
</li>
<? endforeach ?>
</ul>
</div>
<div class="room-group">
<h2>Live Podcasts</h2>
<ul>
<? foreach(array('sendezentrum') as $room): ?>
<li class="<?=h($room)?> wide">
<a href="<?=h(link_room($room))?>"><?=h($rooms[$room])?></a>
</li>
<? endforeach ?>
</ul>
</div>
<div class="room-group">
<h2>Recordings</h2>
<ul>
<li class="recordings wide">
<a href="//media.ccc.de/browse/congress/2014/index.html">Recordings</a>
</li>
</ul>
</div>
</div>
|