Browse Source

changed templating engine used by init:bundle to Twig

Fabien Potencier 14 years ago
parent
commit
175398583b

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Controller/DefaultController.php

@@ -8,6 +8,6 @@ class DefaultController extends Controller
 {
 {
     public function indexAction()
     public function indexAction()
     {
     {
-        return $this->render('{{ bundle }}:Default:index.php.html');
+        return $this->render('{{ bundle }}:Default:index.twig.html');
     }
     }
 }
 }

src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Resources/views/Default/index.php.html → src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Resources/views/Default/index.twig.html