blob: d27c9b0aa45b47726d22cc2650a544af9065385c (
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
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
|
<? include("$assemblies/banner.phtml") ?>
<div class="container overview">
<div class="row">
<div class="col-xs-12">
<h1>Live-Streams</h1>
</div>
</div>
<? foreach(get('OVERVIEW.GROUPS') as $group => $rooms): ?>
<div class="row room-group">
<div class="col-xs-12">
<h2><?=h($group)?></h2>
</div>
<? $count = count($rooms); ?>
<? foreach($rooms as $idx => $slug): ?>
<div class="
room room-<?=h($slug)?>
<? if($count % 2 == 1 && $idx == $count - 1): ?>
col-sm-12 wide
<? else: ?>
col-md-6 col-sm-12 narrow
<? endif ?>
<? if(get("ROOMS.$slug.PREVIEW")): ?>
has-preview
<? endif ?>
<? if(get("ROOMS.$slug.SCHEDULE") && has("SCHEDULE")): ?>
has-schedule
<? endif ?>
">
<? /* when the count is odd and this is the last item - make it full width */ ?>
<div class="
panel panel-default
<? if(get("ROOMS.$slug.PREVIEW")): ?>has-preview<? endif ?>
">
<? if(get("ROOMS.$slug.PREVIEW") && get("ROOMS.$slug.SCHEDULE") && has("SCHEDULE")): ?>
<div class="panel-heading">
<a href="<?=h(link_room($slug))?>">
<?=h(get("ROOMS.$slug.DISPLAY"))?>
</a>
</div>
<? endif ?>
<div class="panel-body">
<? if(get("ROOMS.$slug.PREVIEW")): ?>
<a href="<?=h(link_room($slug))?>">
<img class="preview" src="thumbs/<?=h(get("ROOMS.$slug.STREAM"))?>.png" alt="" width="213" height="120" />
</a>
<? endif ?>
<? if(!get("ROOMS.$slug.PREVIEW") || !get("ROOMS.$slug.SCHEDULE") || !has("SCHEDULE")): ?>
<a href="<?=h(link_room($slug))?>" class="title">
<?=h(get("ROOMS.$slug.DISPLAY"))?>
</a>
<? endif ?>
<? if(get("ROOMS.$slug.SCHEDULE") && has("SCHEDULE")): ?>
Schedule
<div class="program-schedule">
<span class="current-talk hidden">
<strong>Now:</strong>
<span class="t">none</span>
</span>
<br />
<span class="next-talk hidden">
<strong>Next Talk:</strong>
<span class="t">none</span>
</span>
</div>
<? endif ?>
</div>
</div>
</div>
<? endforeach ?>
</div>
<? endforeach ?>
<div class="room-group recordings">
<h2>Recordings</h2>
<ul class="row">
<li class="col-sm-6">
<div class="title">
<a href="http://media.ccc.de/browse/congress/2014/index.html"><span class="fa fa-video-camera"></span> Releases</a>
</div>
</li>
<li class="col-sm-6">
<a href="relive/"><span class="fa fa-play-circle"></span> ReLive</a>
</li>
</ul>
</div>
</div>
|