2012-07-01 08:02:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace KekRozsak\FrontBundle\Controller;
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
|
|
|
|
|
class DefaultController extends Controller
|
|
|
|
{
|
2012-07-01 12:50:25 +00:00
|
|
|
public function articleAction($articleSlug)
|
2012-07-01 08:02:35 +00:00
|
|
|
{
|
2012-07-01 12:50:25 +00:00
|
|
|
return $this->render('KekRozsakFrontBundle:Default:article.html.twig', array());
|
2012-07-01 08:02:35 +00:00
|
|
|
}
|
|
|
|
}
|