src/Controller/HomeController.php line 28

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class HomeController extends AbstractController
  7. {
  8.     #[Route('/'name'home')]
  9.     public function index(): Response
  10.     {
  11.         return $this->render('frontend/index.html.twig', [
  12.             'controller_name' => 'HomeController',
  13.         ]);
  14.     }
  15.     #[Route('/about'name'about')]
  16.     public function about(): Response
  17.     {
  18.         return $this->render('frontend/about.html.twig', [
  19.             'controller_name' => 'HomeController',
  20.         ]);
  21.     }
  22.     #[Route('/contact'name'contact')]
  23.     public function contact(): Response
  24.     {
  25.         return $this->render('frontend/contact.html.twig', [
  26.             'controller_name' => 'HomeController',
  27.         ]);
  28.     }
  29.     #[Route('/mentions-legales'name'mentionsLegales')]
  30.     public function mentionsLegales(): Response
  31.     {
  32.         return $this->render('frontend/mentions_legales.html.twig', [
  33.             'controller_name' => 'HomeController',
  34.         ]);
  35.     }
  36.     #[Route('/vie-privee'name'viePrivee')]
  37.     public function viePrivee(): Response
  38.     {
  39.         return $this->render('frontend/vie_privee.html.twig', [
  40.             'controller_name' => 'HomeController',
  41.         ]);
  42.     }
  43. }