<?php
declare(strict_types=1);
namespace App\Controller\Front;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class DefaultController extends AbstractController
{
/**
* @Route("/", name="home")
*/
public function index(): Response
{
return $this->render('front/default/index.html.twig', [
]);
}
/**
* @Route("/about/", name="about")
*/
public function about(): Response
{
return $this->render('front/about/index.html.twig', [
]);
}
/**
* @Route("/howto/", name="howto")
*/
public function howto(): Response
{
return $this->render('front/howto/index.html.twig', [
]);
}
/**
* @Route("/disclaimer/", name="disclaimer")
*/
public function disclaimer(): Response
{
return $this->render('front/disclaimer/index.html.twig', [
]);
}
}