mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
10 lines
241 B
PHP
10 lines
241 B
PHP
<?php
|
|
|
|
$app->get('/', function() use($app) {
|
|
$repositories = $app['git']->getRepositories($app['git.repos']);
|
|
|
|
return $app['twig']->render('index.twig', array(
|
|
'repositories' => $repositories,
|
|
));
|
|
})->bind('homepage');
|