mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 06:34:17 +00:00
63 lines
2.6 KiB
PHTML
63 lines
2.6 KiB
PHTML
<!DOCTYPE html>
|
||
|
||
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||
|
||
<? include("$assemblies/motd.phtml") ?>
|
||
|
||
<title><?=h($title)?> – <?=h($conference->getTitle())?> Streaming</title>
|
||
|
||
<meta name="robots" content="index,follow" />
|
||
|
||
<? if($conference->hasAuthor()): ?>
|
||
<meta name="author" content="<?=h($conference->getAuthor())?>" />
|
||
<? endif ?>
|
||
|
||
<? if($conference->hasDescription()): ?>
|
||
<meta name="description" content="<?=h($conference->getDescription())?>" />
|
||
<? endif ?>
|
||
|
||
<? if($conference->hasKeywords()): ?>
|
||
<meta name="keywords" content="<?=h($conference->getKeywords())?>" />
|
||
<? endif ?>
|
||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
||
<base href="<?=h($baseurl)?>" />
|
||
<link href="<?=h($baseurl.forceslash($route))?>" rel="canonical" />
|
||
|
||
<link href="assets/img/apple-touch-icon/76x76.png" rel="apple-touch-icon" />
|
||
<link href="assets/img/apple-touch-icon/76x76.png" rel="apple-touch-icon" sizes="76x76" />
|
||
<link href="assets/img/apple-touch-icon/72x72.png" rel="apple-touch-icon" sizes="72x72" />
|
||
<link href="assets/img/apple-touch-icon/60x60.png" rel="apple-touch-icon" sizes="60x60" />
|
||
<link href="assets/img/apple-touch-icon/57x57.png" rel="apple-touch-icon" sizes="57x57" />
|
||
|
||
<link href="assets/img/favicon/196x196.png" rel="icon" type="image/png" />
|
||
<link href="assets/img/favicon/196x196.png" rel="icon" type="image/png" sizes="196x196" />
|
||
<link href="assets/img/favicon/96x96.png" rel="icon" type="image/png" sizes="96x96" />
|
||
<link href="assets/img/favicon/32x32.png" rel="icon" type="image/png" sizes="32x32" />
|
||
<link href="assets/img/favicon/16x16.png" rel="icon" type="image/png" sizes="16x16" />
|
||
|
||
<link type="text/css" rel="stylesheet" href="assets/mejs/mediaelementplayer.min.css" />
|
||
<link type="text/css" rel="stylesheet" href="assets/css/main.css" />
|
||
|
||
<script type="text/javascript" src="assets/js/lib/jquery.min.js"></script>
|
||
<script type="text/javascript" src="assets/js/lib/jquery.scrollTo.min.js"></script>
|
||
<script type="text/javascript" src="assets/js/lib/bootstrap.min.js"></script>
|
||
|
||
<script type="text/javascript" src="assets/mejs/mediaelement-and-player.min.js"></script>
|
||
<script type="text/javascript" src="assets/js/lustiges-script.js"></script>
|
||
</head>
|
||
<body class="<?=h(is_numeric($page[0]) ? 'e'.$page : $page)?>">
|
||
<? include("$assemblies/header.phtml") ?>
|
||
<? include("$page.phtml") ?>
|
||
<? include("$assemblies/footer.phtml") ?>
|
||
|
||
<span class="js-settings"
|
||
data-scheduleoffset="<?=h($schedule->getSimulationOffset())?>"
|
||
></span>
|
||
</body>
|
||
</html>
|