2015-03-27 02:00:01 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<base href="<?php echo HTML_PATH_ADMIN_THEME ?>">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2015-05-15 00:07:45 +02:00
|
|
|
<title>Bludit Login</title>
|
2015-03-27 02:00:01 +01:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="./css/kube.min.css">
|
|
|
|
<link rel="stylesheet" href="./css/default.css">
|
|
|
|
<link rel="stylesheet" href="./css/css/font-awesome.css">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="head">
|
|
|
|
<nav class="navbar nav-fullwidth">
|
|
|
|
<h1>Bludit</h1>
|
|
|
|
<ul>
|
2015-07-04 00:56:24 +02:00
|
|
|
<li><a href="<?php echo HTML_PATH_ROOT ?>"><?php $Language->p('Home') ?></a></li>
|
2015-03-27 02:00:01 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="units-row">
|
2015-05-15 00:07:45 +02:00
|
|
|
|
2015-03-27 02:00:01 +01:00
|
|
|
<!-- CONTENT -->
|
2015-05-15 00:07:45 +02:00
|
|
|
<div class="unit-centered unit-40" style="max-width: 500px">
|
2015-03-27 02:00:01 +01:00
|
|
|
<div id="content">
|
|
|
|
|
|
|
|
<?php
|
2015-05-15 00:07:45 +02:00
|
|
|
|
|
|
|
if(Alert::defined()) {
|
|
|
|
echo '<div class="tools-alert">'.Alert::get().'</div>';
|
|
|
|
}
|
|
|
|
|
2015-03-27 02:00:01 +01:00
|
|
|
// Load view
|
2015-05-15 00:07:45 +02:00
|
|
|
if( Sanitize::pathFile(PATH_ADMIN_VIEWS, $layout['view'].'.php') ) {
|
2015-03-27 02:00:01 +01:00
|
|
|
include(PATH_ADMIN_VIEWS.$layout['view'].'.php');
|
2015-05-15 00:07:45 +02:00
|
|
|
}
|
2015-03-27 02:00:01 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2015-05-05 03:00:01 +02:00
|
|
|
<?php
|
|
|
|
echo "DEBUG: Load time: ".(microtime(true) - $loadTime).'<br>';
|
|
|
|
?>
|
2015-03-27 02:00:01 +01:00
|
|
|
</body>
|
2015-07-04 00:56:24 +02:00
|
|
|
</html>
|