kekrozsak/src/KekRozsak/FrontBundle/Controller/DefaultController.php
Polonkai Gergely 60c0ef8e00 Added the main page contents, currently static
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
2012-07-01 14:50:25 +02:00

14 lines
307 B
PHP

<?php
namespace KekRozsak\FrontBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function articleAction($articleSlug)
{
return $this->render('KekRozsakFrontBundle:Default:article.html.twig', array());
}
}