<?php
namespace App\Controller\Content\App;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Sensio\Bundle\FrameworkExtraBundle\Configuration as Ctrl;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* Class AboutUsController
*
* @package App\Controller\Content\App
*
* @Route("/{_locale}/about", requirements={"_locale": "\w{2}"})
*/
class AboutUsController extends AbstractController
{
/**
* @Route("/", name="mdl_public_about_index")
*
* @Ctrl\Cache(expires="+2 days", public=true)
*
* @return Response
*/
public function indexAction(): Response {
return $this->render('Content/Public/About/index.html.twig');
}
}