fixed URL management

This commit is contained in:
Fabien Potencier
2012-07-06 21:49:55 +02:00
parent 5ecb02ba15
commit 65e0bd402b
23 changed files with 99 additions and 98 deletions

View File

@@ -4,7 +4,6 @@ $app->get('/', function() use($app) {
$repositories = $app['git']->getRepositories($app['git.repos']);
return $app['twig']->render('index.twig', array(
'baseurl' => $app['baseurl'],
'repositories' => $repositories,
));
});
})->bind('homepage');