nodrm/_includes/layouts/home.njk
2024-08-30 22:53:51 +02:00

40 lines
1.5 KiB
Text
Raw Permalink 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="{{ metadata.language }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title or metadata.title }}</title>
<meta name="description" content="{{ description or metadata.description }}">
{#- Atom and JSON feeds included by default #}
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
<link rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}">
<link rel="icon" type="image/x-icon" href="/favicon.png">
{#- Uncomment this if youd like folks to know that you used Eleventy to build your site! #}
<meta name="generator" content="{{ eleventy.generator }}">
{%- css %}{% include "public/css/index.css" %}{% endcss %}
<style>{% getBundle "css" %}</style>
</head>
<body>
<header>
<nav>{{ content | toc | safe }}</nav>
</header>
<main>
<h1>
{{ metadata.title }}
</h1>
{{ content | safe }}
<a href="{{ metadata.source }}" class="btn">Source du site</a>
</main>
<footer><a href="https://quarante-douze.net/"><img src="/img/qdouze.gif" alt="Ce site fait partie de Dimension Quarante-Douze" /></a> <a href="https://creativecommons.org/licenses/by-sa/4.0/"><img src="/img/cc-by-sa.png" alt="Tout le contenu de cette page est sous licence Creatve Common Attribution - Partage à l'identique" /></a></footer>
<!-- Current page: {{ page.url | htmlBaseUrl }} -->
</body>
</html>