Create snippets skeleton

This commit is contained in:
Tim
2023-04-03 23:44:13 +02:00
parent bf83e5aabd
commit 921dcf1e97
15 changed files with 310 additions and 30 deletions

View File

@ -11,9 +11,9 @@ class HomeController extends AbstractController
#[Route('/', name: 'home')]
public function home(): Response
{
return $this->redirectToRoute('task_view');
// return $this->render('simple.html.twig', [
// 'text' => 'Welcome!'
// ]);
// return $this->redirectToRoute('task_view');
return $this->render('simple.html.twig', [
'text' => 'Welcome!'
]);
}
}