mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-07 03:29:19 +02:00
48 lines
1.7 KiB
PHP
48 lines
1.7 KiB
PHP
<!-- header.php -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="author" content="">
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Posterg</title>
|
|
<link rel="stylesheet" href="assets/modern-normalize.min.css">
|
|
<link rel="stylesheet" href="assets/common.css">
|
|
<link rel="stylesheet" href="assets/main.css">
|
|
<?php if (php_sapi_name() === 'cli-server'): ?>
|
|
<!-- Live reload for development -->
|
|
<script>
|
|
(function poll() {
|
|
fetch('/live-reload.php')
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
if (d.changed) location.reload();
|
|
else setTimeout(poll, 1000);
|
|
})
|
|
.catch(() => setTimeout(poll, 2000));
|
|
})();
|
|
</script>
|
|
<?php endif; ?>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a class="title" href="index.php">
|
|
<h1>posterg</h1>
|
|
</a>
|
|
<section>
|
|
<p class="apropos">
|
|
Ce site archive et valorise les mémoires de l'ERG (Bruxelles). Il expose les projets des diplômé·es pour illustrer la diversité des parcours qui marquent l'histoire centenaire de l'école.
|
|
</p>
|
|
<p class="colophon">
|
|
Design & développement : Olivia Marly, Théo Hennequin & Théophile Gervreau-Mercie
|
|
Typographies : Ductus (Amélie Dumont), Hyphont-e
|
|
</p>
|
|
</section>
|
|
<nav role="navigation" aria-label="main navigation">
|
|
<button><a href="search.php"">Recherche</a></button>
|
|
<button><a href=" search.php"">Partager</a></button>
|
|
</nav>
|
|
</header>
|