mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
30 lines
619 B
PHP
30 lines
619 B
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Routing\Annotation\Route;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
class DefaultController extends AbstractController
|
|
{
|
|
/**
|
|
* @Route("/imprint", name="imprint")
|
|
*/
|
|
public function imprint(): Response
|
|
{
|
|
return $this->render('standard/imprint.html.twig');
|
|
}
|
|
|
|
/**
|
|
* @Route("/", name="homepage")
|
|
*/
|
|
public function homepage(): Response
|
|
{
|
|
return $this->render('standard/homepage.html.twig');
|
|
}
|
|
}
|