2015-10-19 00:45:58 +02:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html class="uk-height-1-1 uk-notouch">
|
2015-03-27 02:00:01 +01:00
|
|
|
<head>
|
2015-08-18 04:02:19 +02:00
|
|
|
<meta charset="<?php echo CHARSET ?>">
|
2015-08-03 02:49:12 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2015-10-19 00:45:58 +02:00
|
|
|
<meta name="robots" content="noindex,nofollow">
|
2015-03-27 02:00:01 +01:00
|
|
|
|
2015-08-18 04:02:19 +02:00
|
|
|
<title>Bludit</title>
|
2015-03-27 02:00:01 +01:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<!-- Favicon -->
|
2017-07-22 14:21:13 +02:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo HTML_PATH_ADMIN_THEME.'img/favicon.png?version='.BLUDIT_VERSION ?>">
|
2015-08-07 04:13:55 +02:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<!-- CSS -->
|
2015-11-28 15:47:03 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/uikit.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/login.css?version='.BLUDIT_VERSION ?>">
|
2017-07-22 14:21:13 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_CORE_CSS.'font-awesome/css/font-awesome.min.css?version='.BLUDIT_VERSION ?>">
|
2015-10-19 00:45:58 +02:00
|
|
|
|
|
|
|
<!-- Javascript -->
|
2017-07-16 20:10:19 +02:00
|
|
|
<script charset="utf-8" src="<?php echo HTML_PATH_CORE_JS.'jquery.min.js?version='.BLUDIT_VERSION ?>"></script>
|
2015-11-28 15:47:03 +01:00
|
|
|
<script charset="utf-8" src="<?php echo HTML_PATH_ADMIN_THEME.'js/uikit/uikit.min.js?version='.BLUDIT_VERSION ?>"></script>
|
2015-10-19 00:45:58 +02:00
|
|
|
|
|
|
|
<!-- Plugins -->
|
2015-08-07 04:13:55 +02:00
|
|
|
<?php Theme::plugins('loginHead') ?>
|
2015-03-27 02:00:01 +01:00
|
|
|
</head>
|
2015-10-19 00:45:58 +02:00
|
|
|
<body class="uk-height-1-1">
|
2015-03-27 02:00:01 +01:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<!-- Plugins -->
|
2015-08-07 04:13:55 +02:00
|
|
|
<?php Theme::plugins('loginBodyBegin') ?>
|
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<div class="uk-vertical-align uk-text-center uk-height-1-1">
|
|
|
|
<div class="uk-vertical-align-middle login-box">
|
|
|
|
<h1>BLUDIT</h1>
|
|
|
|
<?php
|
2017-09-10 14:50:50 +02:00
|
|
|
if (Alert::defined()) {
|
|
|
|
echo '<div class="uk-alert uk-alert-danger">'.Alert::get().'</div>';
|
2015-10-19 00:45:58 +02:00
|
|
|
}
|
|
|
|
|
2017-09-10 14:50:50 +02:00
|
|
|
if (Sanitize::pathFile(PATH_ADMIN_VIEWS, $layout['view'].'.php')) {
|
2015-10-19 00:45:58 +02:00
|
|
|
include(PATH_ADMIN_VIEWS.$layout['view'].'.php');
|
|
|
|
}
|
|
|
|
?>
|
2015-03-27 02:00:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-03 02:49:12 +02:00
|
|
|
|
2015-10-19 00:45:58 +02:00
|
|
|
<!-- Plugins -->
|
2015-08-07 04:13:55 +02:00
|
|
|
<?php Theme::plugins('loginBodyEnd') ?>
|
2015-08-03 02:49:12 +02:00
|
|
|
|
2015-03-27 02:00:01 +01:00
|
|
|
</body>
|
2016-05-08 03:10:07 +02:00
|
|
|
</html>
|