refresh schedule-view regularly

This commit is contained in:
MaZderMind 2016-08-21 15:57:39 +02:00
parent 61773c808c
commit 913881497e
2 changed files with 5 additions and 0 deletions

View file

@ -18,6 +18,10 @@
<meta name="robots" content="index,follow" />
<? if(isset($refresh)): ?>
<meta http-equiv="refresh" content="<?=h($refresh)?>; URL=<?=h($canonicalurl)?>" />
<? endif ?>
<? if($conference->hasAuthor()): ?>
<meta name="author" content="<?=h($conference->getAuthor())?>" />
<? endif ?>

View file

@ -4,5 +4,6 @@ echo $tpl->render(array(
'page' => 'schedule',
'title' => 'Schedule-Übersicht',
'refresh' => 15*60,
'schedule' => new Schedule(),
));