Story 3.2: router php urls

This commit is contained in:
2026-02-04 17:06:28 +01:00
parent d520fe848f
commit 0409bb1327
13 changed files with 253 additions and 34 deletions

16
pages/projects.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$pageTitle = 'Projets';
$currentPage = 'projects';
include_template('header', compact('pageTitle'));
include_template('navbar', compact('currentPage'));
?>
<main class="min-h-screen">
<div class="container-content py-20">
<h1 class="text-heading mb-4">Projets</h1>
<p class="text-text-secondary">La liste des projets arrive bientôt.</p>
</div>
</main>
<?php include_template('footer'); ?>