mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
10 lines
267 B
PHP
10 lines
267 B
PHP
<?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,
|
|
));
|
|
}); |