2013-06-14 13:51:44 +02:00
|
|
|
<!DOCTYPE html>
|
2013-08-20 20:12:40 +02:00
|
|
|
<!--[if lt IE 7]>
|
|
|
|
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
|
|
<!--[if IE 7]>
|
|
|
|
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
|
|
<!--[if IE 8]>
|
|
|
|
<html class="no-js lt-ie9"> <![endif]-->
|
2013-06-14 13:51:44 +02:00
|
|
|
<!--[if gt IE 8]><!-->
|
|
|
|
<html class="no-js"> <!--<![endif]-->
|
|
|
|
<head>
|
2013-08-20 20:12:40 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
2013-08-23 16:58:26 +02:00
|
|
|
<title><?= $this->title ? $this->title : 'Icinga Web'; ?></title>
|
2013-08-20 20:12:40 +02:00
|
|
|
<meta name="description" content="">
|
2013-08-21 16:11:22 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
|
|
|
|
<!-- Bootstrap and components -->
|
|
|
|
<link rel="stylesheet" href="<?= $this->baseUrl('css/vendor/bootstrap/bootstrap.min.css') ?>" media="screen">
|
2013-08-21 16:12:06 +02:00
|
|
|
<link rel="stylesheet" href="<?= $this->baseUrl('css/vendor/bootstrap/bootstrap-theme.min.css') ?>" media="screen">
|
2013-06-14 13:51:44 +02:00
|
|
|
|
2013-08-20 20:12:40 +02:00
|
|
|
<link rel="stylesheet" href="<?= $this->baseUrl('css/main.css') ?>">
|
2013-08-21 16:11:22 +02:00
|
|
|
<link rel="stylesheet" href="<?= $this->baseUrl('css/vendor/bootstrap/datetimepicker.min.css') ?>">
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Not used until styling is clear (see #4550)
|
|
|
|
<link rel="stylesheet" href="<?= $this->baseUrl('css.php') ?>">
|
|
|
|
-->
|
|
|
|
|
2013-08-20 20:12:40 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
var base_url = '<?= $this->baseUrl() ?>';
|
|
|
|
ICINGA_DEBUG = true;
|
|
|
|
</script>
|
|
|
|
<? if (isset($_GET['iframe']) && $_GET['iframe'] === 'true'): ?>
|
|
|
|
<base target="_parent"/>
|
|
|
|
<? endif ?>
|
2013-07-12 15:55:31 +02:00
|
|
|
|
2013-08-20 20:12:40 +02:00
|
|
|
<script src="<?php echo $this->baseUrl('js/vendor/modernizr-2.6.2.min.js') ?>"></script>
|
2013-08-21 16:11:22 +02:00
|
|
|
|
|
|
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="./js/vendor/html5shiv.js"></script>
|
|
|
|
<script src="./js/vendor/respond.min.js"></script>
|
2013-08-20 20:12:40 +02:00
|
|
|
<![endif]-->
|
2013-08-21 16:11:22 +02:00
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
</head>
|
2013-08-21 16:45:10 +02:00
|
|
|
<body>
|
2013-08-21 16:11:22 +02:00
|
|
|
<?= $this->render('body.phtml') ?>
|
2013-09-03 18:43:17 +02:00
|
|
|
<script data-main="<?php echo $this->baseUrl('js/main.js')?>"
|
|
|
|
src="<?php echo $this->baseUrl('js/vendor/require.js') ?>"></script>
|
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
</body>
|
|
|
|
</html>
|