<?php
namespace App\Controller\Front;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class PostController extends AbstractController
{
/**
* @Route("/news/list", name="front_post_list")
*/
public function list()
{
return $this->render('front/post/list.html.twig');
}
/**
* @Route("/news/lorem-ipsum", name="front_post_single")
*/
public function single()
{
return $this->render('front/post/single.html.twig');
}
}