my-homelab-configs/apps/website/partials/theme_toolbar.php

18 lines
887 B
PHP

<div class="site-theme-toolbar" aria-label="<?php echo htmlspecialchars($en['site_theme_label']); ?>">
<span data-translate data-key="site_theme_label"
data-en="<?php echo htmlspecialchars($en['site_theme_label']); ?>">
<?php echo $text['site_theme_label']; ?>
</span>
<button type="button" class="site-theme-option is-active" data-site-theme="dark"
data-translate data-key="site_theme_dark"
data-en="<?php echo htmlspecialchars($en['site_theme_dark']); ?>">
<?php echo $text['site_theme_dark']; ?>
</button>
<span class="site-theme-separator" aria-hidden="true">|</span>
<button type="button" class="site-theme-option" data-site-theme="light"
data-translate data-key="site_theme_light"
data-en="<?php echo htmlspecialchars($en['site_theme_light']); ?>">
<?php echo $text['site_theme_light']; ?>
</button>
</div>