Created the InfoBundle for informational pages

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely
2012-04-13 19:50:37 +00:00
parent 57ae5e6f7a
commit 66f1326dca
10 changed files with 114 additions and 0 deletions

View File

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