17 lines
474 B
PHP
17 lines
474 B
PHP
<?php
|
|
require_once __DIR__ . '/includes/config.php';
|
|
require_once __DIR__ . '/includes/functions.php';
|
|
require_once __DIR__ . '/includes/router.php';
|
|
|
|
$router = new Router();
|
|
|
|
$router
|
|
->add('/', 'pages/home.php')
|
|
->add('/projets', 'pages/projects.php')
|
|
->add('/projet/{slug}', 'pages/project-single.php')
|
|
->add('/competences', 'pages/skills.php')
|
|
->add('/a-propos', 'pages/about.php')
|
|
->add('/contact', 'pages/contact.php');
|
|
|
|
$router->dispatch();
|