2018-06-05 23:50:03 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2018-04-04 23:46:36 +02:00
|
|
|
<head>
|
2018-06-05 23:50:03 +02:00
|
|
|
<title>Bludit</title>
|
2018-04-04 23:46:36 +02:00
|
|
|
<meta charset="<?php echo CHARSET ?>">
|
2018-06-05 23:50:03 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2018-04-04 23:46:36 +02:00
|
|
|
<meta name="robots" content="noindex,nofollow">
|
|
|
|
|
|
|
|
<!-- Favicon -->
|
2019-03-10 18:27:24 +01:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo HTML_PATH_CORE_IMG.'favicon.png?version='.BLUDIT_VERSION ?>">
|
2018-04-04 23:46:36 +02:00
|
|
|
|
|
|
|
<!-- CSS -->
|
2018-06-05 23:50:03 +02:00
|
|
|
<?php
|
2018-07-13 18:30:42 +02:00
|
|
|
echo Theme::cssBootstrap();
|
2018-07-10 19:53:53 +02:00
|
|
|
echo Theme::css(array(
|
2018-06-05 23:50:03 +02:00
|
|
|
'bludit.css'
|
2018-07-10 19:53:53 +02:00
|
|
|
), DOMAIN_ADMIN_THEME_CSS);
|
2018-06-05 23:50:03 +02:00
|
|
|
?>
|
2018-04-04 23:46:36 +02:00
|
|
|
|
|
|
|
<!-- Javascript -->
|
2018-06-05 23:50:03 +02:00
|
|
|
<?php
|
2018-07-02 00:24:53 +02:00
|
|
|
echo Theme::jquery();
|
2018-07-13 18:30:42 +02:00
|
|
|
echo Theme::jsBootstrap();
|
2018-06-05 23:50:03 +02:00
|
|
|
?>
|
|
|
|
|
2018-04-04 23:46:36 +02:00
|
|
|
<!-- Plugins -->
|
|
|
|
<?php Theme::plugins('loginHead') ?>
|
|
|
|
</head>
|
2018-06-05 23:50:03 +02:00
|
|
|
<body class="login">
|
2018-04-04 23:46:36 +02:00
|
|
|
|
|
|
|
<!-- Plugins -->
|
|
|
|
<?php Theme::plugins('loginBodyBegin') ?>
|
|
|
|
|
2018-06-05 23:50:03 +02:00
|
|
|
<!-- Alert -->
|
|
|
|
<?php include('html/alert.php'); ?>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-md-center pt-5">
|
2018-08-01 13:52:59 +02:00
|
|
|
<div class="col-md-4 pt-5">
|
2018-06-05 23:50:03 +02:00
|
|
|
<?php
|
|
|
|
if (Sanitize::pathFile(PATH_ADMIN_VIEWS, $layout['view'].'.php')) {
|
|
|
|
include(PATH_ADMIN_VIEWS.$layout['view'].'.php');
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-04 23:46:36 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Plugins -->
|
|
|
|
<?php Theme::plugins('loginBodyEnd') ?>
|
|
|
|
|
|
|
|
</body>
|
2018-08-01 13:52:59 +02:00
|
|
|
</html>
|