Started work on the site design

This commit is contained in:
2023-04-08 16:44:28 -04:00
parent 0a4b41c547
commit cb341524c4
12 changed files with 1303 additions and 1 deletions

10
app/routes.php Normal file
View File

@ -0,0 +1,10 @@
<?php
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Views\Twig;
$app->get('/', function (Request $request, Response $response, array $args) {
$view = Twig::fromRequest($request);
return $view->render($response, 'index.twig');
});