aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorIke2019-10-11 23:08:02 +0200
committerIke2019-10-11 23:09:14 +0200
commit06583183ab51094b3bf38ec34503f907047c2fcb (patch)
tree161b137dd7004c2bf6343af8b7d89b0e97fb27b6 /template
parent3b3453fcc331ad477651ca83e4144188bad1cfd8 (diff)
Allow conference to override the not-started-yet page contents
Diffstat (limited to 'template')
-rw-r--r--template/not-started.phtml4
1 files changed, 4 insertions, 0 deletions
diff --git a/template/not-started.phtml b/template/not-started.phtml
index 043474c..5149642 100644
--- a/template/not-started.phtml
+++ b/template/not-started.phtml
@@ -1,7 +1,11 @@
<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>