From be92698ffee4997e3f9beee2671c4ec41d34b8eb Mon Sep 17 00:00:00 2001 From: blryface <124838505+blryface@users.noreply.github.com> Date: Sat, 18 May 2024 17:07:45 -0300 Subject: [PATCH] companies --- index.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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;