Website/index.php
2023-09-15 16:47:56 +02:00

21 lines
419 B
PHP

<?php
require_once '_config.php';
switch ($_SERVER['REQUEST_URI']) {
case "/":
echo $twig->render('index.twig', [
'user' => null
]);
break;
case "/nations":
echo $twig->render('nations.twig', [
'user' => null
]);
break;
default:
http_response_code(404);
echo $twig->render('404.twig', [
'user' => null
]);
break;
}