| changeset 1 | 06a22ff5d58d |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Controller/DefaultController.php Wed Oct 05 23:51:31 2011 +0200 @@ -0,0 +1,15 @@ +<?php + +namespace IRI\Bundle\WikiTagBundle\Controller; + +use Symfony\Bundle\FrameworkBundle\Controller\Controller; + + +class DefaultController extends Controller +{ + + public function indexAction($name) + { + return $this->render('WikiTagBundle:Default:index.html.twig', array('name' => $name)); + } +}