16 lines
425 B
PHP
16 lines
425 B
PHP
<?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'); ?>
|