compagniekalimat-fr/src/_includes/layouts/base.njk

31 lines
515 B
Text
Raw Normal View History

2022-09-30 01:21:14 +02:00
---
layout: layouts/html.njk
---
<head>
</head>
<body>
<div id="sheet">
{% include "header.njk" %}
<main>
<h1>
{{ title }}
</h1>
{{ content | safe }}
{% if modified %}
<span class="text-xs">
Mis à jour le <time datetime="{{ modified | htmlDateString }}">
{{ modified | readableDate }}
</time>
</span>
{% endif %}
</main>
</div>
{% include "footer.njk" %}
{% include "plausible.njk" %}
</body>