25 lines
517 B
PHP
25 lines
517 B
PHP
<?php
|
|
|
|
$config = parse_ini_file(
|
|
filename: dirname(__DIR__, 1) . "/.env.ini",
|
|
scanner_mode: INI_SCANNER_TYPED,
|
|
process_sections: true
|
|
);
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard</title>
|
|
<?= VV::css("assets/css/style") ?>
|
|
</head>
|
|
<body>
|
|
<?= VV::shell() ?>
|
|
|
|
<script>globalThis._ENV = <?= json_encode($config) ?></script>
|
|
<?= VV::init() ?>
|
|
<?= VV::js("assets/js/script") ?>
|
|
</body>
|
|
</html>
|