blob: 3e6ebf0addbf075b90dc4d3ac7043090708262e2 (
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
|
<div class="container about">
<? if($conference->getTitle() != $next['name']): ?>
<h1><?=h($conference->getTitle())?> is over!</h1>
<? endif ?>
<? include("$assemblies/countdown.phtml") ?>
<p>
<? if($conference->hasReleases()): ?>
Recordings will be released at <a href="<?=h($conference->getReleasesUrl())?>"><?=h($conference->getReleasesUrl())?></a>.
<? endif ?>
<? if($conference->hasRelive()): ?>
<? if($conference->hasReleases()): ?>
Until all recordings are released, <a href="<?=h($conference->getReliveUrl())?>">ReLive</a> remains available.
<? else: ?>
You can still watch stream dumps <a href="<?=h($conference->getReliveUrl())?>">here</a>.
<? endif ?>
<? endif ?>
</p>
<p>
Lecture recording and streaming at <strong><?=h($conference->getTitle())?></strong> was organized and performed by the <a href="http://c3voc.de">Chaos Computer Club Video Operation Center</a>. The next events we'll attend will be
</p>
<br><br><br>
<? include("$assemblies/upcoming.phtml") ?>
</div>
|