Upgrade boilerplate

This commit is contained in:
Ludovic CANDELLIER
2021-09-22 21:01:43 +02:00
parent 8107078ea7
commit f9070b2ec8
56 changed files with 1477 additions and 701 deletions

View File

@@ -2,10 +2,14 @@
$theme = include __DIR__.'/themes/green.php';
// Additionnal views to append items to the navbar
$theme['navbar'] += [
'left' => [],
'right' => [],
$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;