82 lines
2.9 KiB
Handlebars
82 lines
2.9 KiB
Handlebars
<!doctype html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="{{ description }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ site.subject }} — {{ title }}</title>
|
|
<link rel="preload" href="{{ site.basePath }}/assets/css/reset.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
<link rel="preload" href="{{ site.basePath }}/assets/css/theme.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
<link rel="preload" href="{{ site.basePath }}/assets/css/helpers.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/main.css">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/typography.css">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/header.css">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/footer.css">
|
|
<noscript>
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/reset.css">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/theme.css">
|
|
<link rel="stylesheet" href="{{ site.basePath }}/assets/css/helpers.css">
|
|
</noscript>
|
|
</head>
|
|
|
|
<body id="top">
|
|
<header>
|
|
<img src="{{ site.basePath }}/assets/images/brand.jpg" alt="Logo du {{ site.subject }}" />
|
|
<nav>
|
|
{{#each collections.nav}}
|
|
<a href="{{ basePath }}/{{ path }}">{{ title }}</a>
|
|
{{/each}}
|
|
</nav>
|
|
<button id="theme-toggle" class="theme-toggle">🌙</button>
|
|
</header>
|
|
<main>
|
|
<h1 class="hidden">{{ title }}</h1>
|
|
{{{ contents }}}
|
|
{{!-- {{#if postlist}}
|
|
<ul>
|
|
{{#each posts}}
|
|
<li>
|
|
<a href="/{{ path }}">{{ title }}</a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}} --}}
|
|
</main>
|
|
|
|
<footer>
|
|
<div>
|
|
<div>
|
|
<h3>Hébergement</h3>
|
|
<p>Ce site est hébergé par <a href="https://www.gresille.org/" target="_blank">Grésille</a></p>
|
|
</div>
|
|
<div>
|
|
<h3>Contact</h3>
|
|
<address>{{ site.address }}</address>
|
|
<a href="mailto:{{ site.contact }}">{{ site.contact }}</a>
|
|
</div>
|
|
<div>
|
|
<h3>Adhésion</h3>
|
|
<a href="https://www.helloasso.com/associations/low-tech-lab-grenoble/adhesions/formulaire-d-adhesion-2025-low-tech-lab-grenoble" target="_blank">Formulaire d'adhésion</a>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<span id="page-size"></span>
|
|
<span>{{ site.author }} | Generated with <a href="https://metalsmith.io/" target="_blank" title="Metalsmith - static site generator">Metalsmith.io</a></span>
|
|
<nav id="back-to-top">
|
|
<a
|
|
href="#top"
|
|
title="Retour en haut"
|
|
aria-label="Retour en haut de page"
|
|
>
|
|
↑
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
</footer>
|
|
|
|
<script async src="{{ site.basePath }}/assets/scripts/theme-toggle.js" ></script>
|
|
<script src="{{ site.basePath }}/assets/scripts/page-size.js" ></script>
|
|
</body>
|
|
|
|
</html> |