This commit is contained in:
2024-11-22 08:47:33 +01:00
parent 1289b22a93
commit 0729b81d06
6 changed files with 151 additions and 55 deletions

View File

@ -12,7 +12,8 @@ class HomeController extends AbstractController
public function index(): Response
{
return $this->render('home/index.html.twig', [
'controller_name' => 'HomeController',
]);
'usemenu' => true,
'usesidebar' => true,
]);
}
}