blob: cf3daf662ca685506d2b56d4247ce7bbf1b939e7 (
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
|
<?php
$pageTitle = "";
if (isset($_title) && $_title !== null)
$pageTitle = "$_title | ";
$pageTitle .= env("MYSTIC_FORUM_TITLE") ?? "Forum";
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="de" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="de" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="de" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="de" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="generator" content="mysticBB <?= htmlentities(MYSTICBB_VERSION) ?>">
<title><?= htmlentities($pageTitle) ?></title>
<link rel="stylesheet" href="?_action=ctheme">
<script src="/ui/jquery-1.12.4.min.js"></script>
<script src="/ui/dist/js/bootstrap.min.js"></script>
<script src="/ui/modernizr-2.6.2.min.js"></script>
<script src="?_action=ji18n"></script>
<!--[if lt IE 9]>
<script src="/ui/html5shiv.min.js"></script>
<script src="/ui/respond.min.js"></script>
<![endif]-->
</head>
<body>
|