diff --git a/index.php b/index.php index 12dfb0f..8ae3772 100644 --- a/index.php +++ b/index.php @@ -85,6 +85,14 @@ echo $twig->render('nations.twig'); }); + $router->get('/companies', function() { + global $twig; + + $twig->addGlobal('pageUri', '/companies'); + + echo $twig->render('companies.twig'); + }); + $router->get('/gallery', function() { global $twig;