blob: 3c3761eaa9ef13b8a4bc84aff79023a00261a2c5 (
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
|
<div class="container">
<h1><?=h($title)?></h1>
<div class="row">
<div class="col-xs-12">
<div class="alert alert-info" role="alert">
<p>
This service provides automated stream dumps and time shifting.
</p>
<p>
All recordings start/stop automatically 15 minutes before/after the talk begins/ends.
</p>
<p>
Please <b>do not link</b> to the individual ReLive recordings, they're going to disappear after the conference.
</p>
</div>
</div>
</div>
<div class="row">
<? if(!$talks): ?>
<div class="col-xs-10 col-xs-offset-1">
<div class="alert alert-warning" role="alert">
<i class="fa fa-bug"></i>
No ReLive talks available (yet).
</div>
</div>
<? else: ?>
<? foreach ($talks as $talk): ?>
<div class="col-xs-12 recording">
<div class="panel <? if($talk['status'] == 'live'): ?>panel-warning<? else: ?>panel-default<? endif ?>">
<div class="panel-heading">
<h3 class="panel-title">
<a href="<?=h($talk['url'])?>">
<?=h($talk['title'])?>
</a>
</h3>
</div>
<div class="panel-body">
<a href="<?=h($talk['url'])?>">
<img class="preview" alt="<?=h($talk['title'])?>" class="video-thumbnail" src="<?=h($talk['thumbnail'])?>" width="213" height="120" />
</a>
<ul class="metadata">
<li>
<span class="fa fa-clock-o"></span>
<?=h(round($talk['duration']/60))?> min
</li>
<li>
<span class="fa fa-cogs"></span>
<?=h($talk['status'])?>
</li>
<li>
<span class="fa fa-sign-in"></span>
<? if(isset($talk['roomlink'])): ?>
<a href="<?=h($talk['roomlink'])?>"><?=h($talk['room'])?></a>
<? else: ?>
<?=h($talk['room'])?>
<? endif ?>
</li>
</ul>
</div>
</div>
</div>
<? endforeach ?>
<? endif ?>
</div>
</div>
|