bludit/admin/themes/default/login.php

58 lines
1.3 KiB
PHP
Raw Normal View History

2015-03-27 02:00:01 +01:00
<!doctype html>
<html>
<head>
<base href="<?php echo HTML_PATH_ADMIN_THEME ?>">
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-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-08-03 02:49:12 +02:00
<link rel="stylesheet" href="./css/kube.min.css?version=<?php echo BLUDIT_VERSION ?>">
<link rel="stylesheet" href="./css/default.css?version=<?php echo BLUDIT_VERSION ?>">
<link rel="stylesheet" href="./css/css/font-awesome.css?version=<?php echo BLUDIT_VERSION ?>">
2015-08-07 04:13:55 +02:00
<!-- Plugins Login Head -->
<?php Theme::plugins('loginHead') ?>
2015-03-27 02:00:01 +01:00
</head>
<body>
2015-08-07 04:13:55 +02:00
<!-- Plugins Login Body Begin -->
<?php Theme::plugins('loginBodyBegin') ?>
2015-03-27 02:00:01 +01:00
<div id="head">
<nav class="navbar nav-fullwidth">
<h1>Bludit</h1>
2015-08-03 02:49:12 +02:00
<ul>
2015-08-18 04:02:19 +02:00
<li><a href="<?php echo HTML_PATH_ROOT ?>"><?php $Language->p('Website') ?></a></li>
2015-08-03 02:49:12 +02:00
</ul>
2015-03-27 02:00:01 +01:00
</nav>
</div>
<div class="units-row">
2015-05-15 00:07:45 +02:00
2015-03-27 02:00:01 +01:00
<!-- CONTENT -->
2015-08-18 04:02:19 +02:00
<div class="unit-centered unit-40" style="max-width: 400px">
2015-03-27 02:00:01 +01:00
<div id="content">
<?php
2015-05-15 00:07:45 +02:00
if(Alert::defined()) {
2015-08-18 04:02:19 +02:00
echo '<div class="tools-alert tools-alert-green">'.Alert::get().'</div>';
2015-05-15 00:07:45 +02:00
}
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-08-03 02:49:12 +02:00
2015-08-07 04:13:55 +02:00
<!-- Plugins Login Body Begin -->
<?php Theme::plugins('loginBodyEnd') ?>
2015-08-03 02:49:12 +02:00
2015-03-27 02:00:01 +01:00
</body>
2015-07-04 00:56:24 +02:00
</html>