This repository has been archived on 2023-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www-2/templates/_default/page.html

29 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>{{ .Title }} {{ site.Title }}</title>
</head>
<body>
<nav>
<span id="title"><a title="Accueil du blog" href="/">{{ site.Title }}</a></span>
<a title="Lien vers la page À propos de" href="/posts/">Posts</a>
<a title="Lien vers les archives du blog" href="/about/">À propos</a>
<a title="Lien vers ma page de contact" href="https://forum.openbsd.fr.eu.org/">Forum</a>
<a class="rss" title="Flux RSS du blog" href="/liste/">Mailing-list</a>
<a class="rss" title="Flux Atom du blog" href="https://wiki.openbsd.fr.eu.org/doku.php">Wiki</a>
</nav>
<main>
<article>
<h1>{{ .Title }}</h1>
{{ .Content | safeHTML }}
</article>
</main>
<footer>
<p>Généré avec <a href="https://sr.ht/~adnano/kiln">kiln</a> - Utilise la fonte <a href="https://software.sil.org/andika/">Andika</a></p>
</footer>
</body>
</html>