Topbar logo now loads from config: NebuleAir Pro or ModuleAir Pro. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
1.7 KiB
HTML
Executable File
35 lines
1.7 KiB
HTML
Executable File
<!-- Topbar -->
|
|
<nav class="navbar navbar-dark fixed-top" style="background-color: #8d8d8f;" id="topbar">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">
|
|
<img src="assets/img/LogoNebuleAir.png" alt="Logo" height="30" class="d-inline-block align-text-top" id="topbar-logo">
|
|
</a>
|
|
<script>
|
|
fetch('launcher.php?type=get_config_sqlite')
|
|
.then(r => r.json())
|
|
.then(config => {
|
|
if (config.device_type === 'moduleair_pro') {
|
|
document.getElementById('topbar-logo').src = 'assets/img/logoModuleAir.png';
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
</script>
|
|
<div class="d-flex">
|
|
<button class="btn btn-outline-light d-md-none me-2" type="button" data-bs-toggle="offcanvas" data-bs-target="#sidebarOffcanvas" aria-controls="sidebarOffcanvas" aria-label="Toggle Sidebar">☰</button>
|
|
|
|
<!-- Centered text -->
|
|
<!--
|
|
<span id="pageTitle_plus_ID" class="position-absolute top-50 start-50 translate-middle">Texte au milieu</span>
|
|
-->
|
|
|
|
<!-- Language Switcher -->
|
|
<select class="form-select form-select-sm me-2" id="languageSwitcher" style="width: auto; background-color: #6c757d; color: white; border-color: white;" onchange="i18n.setLanguage(this.value)">
|
|
<option value="fr" style="background-color: #6c757d; color: white;">🇫🇷 FR</option>
|
|
<option value="en" style="background-color: #6c757d; color: white;">🇬🇧 EN</option>
|
|
</select>
|
|
|
|
<button type="button" class="btn btn-outline-light" id="RTC_time">loading...</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|