dj_mix_hosting_software/index.php
2024-04-30 01:07:22 -07:00

43 lines
No EOL
1.2 KiB
PHP

<?php
// read toml config file
require_once 'vendor/autoload.php';
require_once 'functions/i18n.php';
use Yosymfony\Toml\Toml;
$config = Toml::ParseFile('includes/config.toml');
$lang = $_SESSION['lang'] ?? $config['app']['locale'];
$locale = loadLocale($lang);
?>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $config['app']['name']; ?></title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="fontawesome/css/all.css" rel="stylesheet"/>
</head>
<body style="background-color: #eee;">
<?php require 'navbar.php'; ?>
<section style="background-color: #eee;">
<div class="container py-5">
<div class="row">
<div class="col">
<nav aria-label="breadcrumb" class="bg-body-tertiary rounded-3 p-3 mb-4">
<ol class="breadcrumb mb-0">
<li class="breadcrumb-item active"><a href="/"><?php echo $locale['home']; ?></a></li>
</ol>
</nav>
</div>
</div>
</div>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>