mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 06:34:17 +00:00
64 lines
2.2 KiB
PHTML
64 lines
2.2 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($canonicalurl)?>" rel="canonical" />
|
||
|
||
<link href="<?=h($assets)?>img/apple-touch-icon.png" rel="apple-touch-icon" />
|
||
<link href="<?=h($assets)?>img/favicon.png" rel="icon" type="image/png" />
|
||
|
||
<link type="text/css" rel="stylesheet" href="<?=h($assets)?>mejs/mediaelementplayer.min.css" />
|
||
<link type="text/css" rel="stylesheet" href="gen/main.css" />
|
||
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lib/jquery.min.js"></script>
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lib/jquery.scrollTo.min.js"></script>
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lib/bootstrap.min.js"></script>
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lib/bootstrap-datepicker.min.js"></script>
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lib/moment.min.js"></script>
|
||
|
||
<script type="text/javascript" src="<?=h($assets)?>mejs/mediaelement-and-player.min.js"></script>
|
||
<script type="text/javascript" src="<?=h($assets)?>js/lustiges-script.js"></script>
|
||
</head>
|
||
<body class="<?=h(is_numeric($page[0]) ? 'e'.$page : $page)?>">
|
||
<? if(!@$naked): ?>
|
||
<? include("$assemblies/header.phtml") ?>
|
||
<? endif ?>
|
||
|
||
<? include("$page.phtml") ?>
|
||
|
||
<? if(!@$naked): ?>
|
||
<? include("$assemblies/footer.phtml") ?>
|
||
<? endif ?>
|
||
|
||
<? if(isset($schedule)): ?>
|
||
<span class="js-settings"
|
||
data-scheduleoffset="<?=h($schedule->getSimulationOffset())?>"
|
||
></span>
|
||
<? endif ?>
|
||
</body>
|
||
</html>
|