Files
opensem/config/boilerplate/theme.php
Ludovic CANDELLIER f9070b2ec8 Upgrade boilerplate
2021-09-22 21:01:43 +02:00

16 lines
372 B
PHP

<?php
$theme = include __DIR__.'/themes/green.php';
$theme += [
'navbar' => [ // Additionnal views to append items to the navbar
'left' => [],
'right' => [],
],
'favicon' => null, // Favicon url
'fullscreen' => true, // Fullscreen switch
'darkmode' => true, // Dark mode switch
];
return $theme;