Website/index.php
2023-09-15 17:10:03 +02:00

25 lines
456 B
PHP

<?php
global $twig;
require_once '_config.php';
session_start();
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;
}