<?php
namespace App\Controller;
use App\Entity\Post;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class ContactController extends AbstractController
{
public function index()
{
return $this->render('contact/index.html.twig');
}
}