Initial commit

This commit is contained in:
Klaus Silveira
2012-05-18 01:38:33 -03:00
commit df43c987cf
244 changed files with 20826 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
$app->get('/', function() use($app) {
$repositories = $app['git']->getRepositories($app['git.repos']);
return $app['twig']->render('index.twig', array(
'baseurl' => $app['baseurl'],
'repositories' => $repositories,
));
});