aboutsummaryrefslogtreecommitdiff
path: root/template/closed.phtml
blob: 66d458d0f1fcaf2e15cbd72d60e3a08ea5a7dd14 (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
<div class="container about">
	<h1><?=h($conference->getTitle())?> is over!</h1>

	<? if($next): ?>
		<h2>See you soon at <?=h($next['name'])?></h2>
		<span class="countdown" data-dt="<?=h($next['start_date'])?>"></span>
	<? endif ?>

	<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>

	<? foreach($events as $event): ?>
		<div class="col-xs-10 col-xs-offset-1 col-md-6 col-md-offset-3">

			<div class="panel panel-default">
				<div class="panel-heading">
					<? if($event['description']): ?>
						<a href="<?=h($event['description'])?>">
							<?=h($event['name'])?>
						</a>
					<? else: ?>
						<?=h($event['name'])?>
					<? endif ?>
				</div>
				<div class="panel-body">
					<?=h($event['location'])?><br />
					<?=h($event['start_date'])?><?=h($event['end_date'])?>
				</div>
			</div>

		</div>
	<? endforeach ?>
</div>