streaming-website/template/page.phtml

56 lines
2 KiB
PHTML
Raw Normal View History

2014-10-01 08:33:00 +00:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2014-10-19 09:03:16 +00:00
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<? include("$assemblies/motd.phtml") ?>
<title><?=h($title)?> <?=h($conference->getTitle())?> Streaming</title>
2014-10-01 08:33:00 +00:00
2014-10-19 09:03:16 +00:00
<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 ?>
2014-10-19 09:03:16 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2014-11-09 22:47:50 +00:00
<base href="<?=h($baseurl)?>" />
<link href="<?=h($baseurl.forceslash($route))?>" rel="canonical" />
2014-11-09 22:47:50 +00:00
2015-04-02 09:39:59 +00:00
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="assets/img/favicon.png" rel="icon" type="image/png" />
2014-10-19 09:03:16 +00:00
2015-02-27 18:59:23 +00:00
<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>
2014-11-06 23:11:21 +00:00
<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>
2015-03-31 19:56:23 +00:00
<script type="text/javascript" src="assets/js/lib/bootstrap-datepicker.min.js"></script>
2014-12-26 00:46:20 +00:00
2015-02-27 18:59:23 +00:00
<script type="text/javascript" src="assets/mejs/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="assets/js/lustiges-script.js"></script>
2014-10-01 08:33:00 +00:00
</head>
2015-03-01 15:46:04 +00:00
<body class="<?=h(is_numeric($page[0]) ? 'e'.$page : $page)?>">
2014-12-15 21:59:21 +00:00
<? include("$assemblies/header.phtml") ?>
2014-10-01 08:33:00 +00:00
<? include("$page.phtml") ?>
2014-12-15 21:59:21 +00:00
<? include("$assemblies/footer.phtml") ?>
<span class="js-settings"
data-scheduleoffset="<?=h($schedule->getSimulationOffset())?>"
></span>
2014-10-01 08:33:00 +00:00
</body>
</html>