Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me> Reviewed-on: http://git.simonis.lol/sites/abiball/pulls/5 Reviewed-by: Hop In, I Have Puppies AND WiFi <jleibl@noreply@simonis.lol> Co-authored-by: Constantin Simonis <constantin@simonis.lol> Co-committed-by: Constantin Simonis <constantin@simonis.lol>
17 lines
417 B
PHP
17 lines
417 B
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
final class HomeController extends AbstractController
|
|
{
|
|
#[Route(path: '/', name: 'app_home', methods: ['GET'])]
|
|
public function index(): Response
|
|
{
|
|
return $this->render('home/index.html.twig');
|
|
}
|
|
}
|