2024-01-25 18:34:32 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title><?= $site->title() ?><?= e($page->url() !== $site->url(), '-' . $page->title()) ?></title>
|
2024-01-26 07:45:41 +01:00
|
|
|
<link rel="stylesheet" href="assets/css/style.css" />
|
2024-01-25 18:34:32 +01:00
|
|
|
<script src="assets/script.js" defer></script>
|
|
|
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
|
|
|
<meta name="robots" content="noindex">
|
|
|
|
|
</head>
|
|
|
|
|
<body class="grid">
|
|
|
|
|
<header id="header">
|
|
|
|
|
<div id="logo">
|
|
|
|
|
<a href="/">
|
|
|
|
|
<h1 id="actuel">actuel</h1>
|
|
|
|
|
<h1 id="inactuel">inactuel</h1>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<nav class="grid">
|
|
|
|
|
<div id="logo-nav">
|
|
|
|
|
<h1 id="actuel-nav">actuel</h1>
|
|
|
|
|
<h1 id="inactuel-nav">inactuel</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<ul id="spaces">
|
|
|
|
|
<li>
|
|
|
|
|
<a href="#">accueil</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="#">proposer une idée / un texte</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li><a href="#">équipe</a></li>
|
|
|
|
|
<li><a href="#">mentions légales</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|