blob: 2f28166d05c037b00762097b836452a2cd393ea4 (
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
|
<? 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)?>">
<a href="<?=h(link_room($room))?>"><?=h($rooms[$room])?></a>
</li>
<? endforeach ?>
</ul>
</div>
</div>
|