mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 06:34:17 +00:00
11 lines
304 B
PHTML
11 lines
304 B
PHTML
<div class="container about">
|
|
<? if($conference->hasNotStartedHtml()): ?>
|
|
<?= $conference->getNotStartedHtml() ?>
|
|
<? else: ?>
|
|
<h1><?=h($conference->getTitle())?> has not started yet</h1>
|
|
|
|
<p>
|
|
Live streams will be available here once it has started. Please check back later.
|
|
</p>
|
|
<? endif ?>
|
|
</div>
|