/**
* @Route("/{slug}/", requirements={"slug"="[^\s\admin]+"})
*/
public function show ($slug)
{
$repository = $this->getDoctrine()->getRepository(Pages::class);
$page = $repository -> findOneBy(['slug' => $slug]);
return $this->render('static_page.html.twig',[
'title' => $page->getTitle(),
'content' => $page->getContent(),
]);
}
git config --list