diff options
author | MaZderMind | 2015-04-04 20:11:25 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-04 20:12:49 +0200 |
commit | 0fb8904157ea87997fa662ad2c975d773dd75455 (patch) | |
tree | 9d3f1c505fd499f637bc4926a7feb19fffce4c5e /template/closed.phtml | |
parent | 69c2ec30e6131a2ad205a4a1b77abcbed40c7670 (diff) |
Implement Close-Down Page with Upcoming Event
Diffstat (limited to '')
-rw-r--r-- | template/closed.phtml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/template/closed.phtml b/template/closed.phtml new file mode 100644 index 0000000..f6734fa --- /dev/null +++ b/template/closed.phtml @@ -0,0 +1,25 @@ +<div class="container about"> + <h1><?=h($conference->getTitle())?> is over!</h1> + + <? if($upcoming): ?> + <h2>See you soon at <?=h($upcoming['name'])?></h2> + <? 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 Event we'll attend will be at + </p> + + <br><br><br> + + <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"><?=h($upcoming['name'])?></div> + <div class="panel-body"> + <?=h($upcoming['location'])?><br /> + <?=h($upcoming['start_date'])?> – <?=h($upcoming['end_date'])?> + </div> + </div> + + </div> +</div> |