Added FrontBundle with a sample static blog entry

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely
2012-06-16 16:33:00 +02:00
parent b3172570e7
commit a775f44a35
12 changed files with 222 additions and 0 deletions

View File

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