blob: 4d4ff3861feb2922fa433da398fd50a66b5b2185 (
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
 | <div class="container about">
	<? include("$assemblies/countdown.phtml") ?>
	<? if($last): ?>
		<div class="well">
			<? // FIXME when $last would be a Conference object, this code could be shared with clodes.phtml ?>
			<h1><?=h($last['title'])?> is over!</h1>
			<? if($last['releases']): ?>
				Recordings will be released at <a href="<?=h($last['releases'])?>"><?=h($last['releases'])?></a>.
			<? endif ?>
			<? if($last['relive']): ?>
				<? if($last['releases']): ?>
					Until all recordings are released, <a href="<?=h($last['relive'])?>">ReLive</a> remains available.
				<? else: ?>
					You can still watch stream dumps <a href="<?=h($last['relive'])?>">here</a>.
				<? endif ?>
			<? endif ?>
		</div>
	<? else: ?>
		<p>
			You can watch most of our Recordings at <a href="<?=h($conference->getReleasesUrl())?>"><?=h($conference->getReleasesUrl())?></a>.
		</p>
	<? endif ?>
	<br><br><br>
	<? include("$assemblies/upcoming.phtml") ?>
</div>
 |