Substituted old menu trough KNP menu bundle

This commit is contained in:
Kevin Frantz
2018-09-06 11:02:22 +02:00
parent 36b9020c01
commit 8e031de88e
8 changed files with 276 additions and 57 deletions

View File

@@ -17,7 +17,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
*/
public function imprint(): Response
{
return $this->render("standard/imprint.html.twig",['menu_items'=>[]]);
return $this->render("standard/imprint.html.twig");
}
/**
@@ -25,7 +25,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
*/
public function homepage(): Response
{
return $this->render("standard/homepage.html.twig",['menu_items'=>[]]);
return $this->render("standard/homepage.html.twig");
}
}