Created KekRozsak\FrontBundle as an almost empty bundle

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely
2012-07-01 10:02:35 +02:00
parent 12ef9a147c
commit 0b401e352e
10 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace KekRozsak\FrontBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction()
{
return $this->render('KekRozsakFrontBundle:Default:index.html.twig', array());
}
}