CRSSWebsite/index.php

21 lines
419 B
PHP
Raw Normal View History

2023-09-14 17:33:54 +00:00
<?php
require_once '_config.php';
2023-09-15 14:47:56 +00:00
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;
}