blob: ac639a246e956346da16b1179966493333c4e085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<!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>
|