23 lines
826 B
Plaintext
23 lines
826 B
Plaintext
<!DOCTYPE html>
|
|||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>{% if title %}{{ title }} | {{ site.name }}{% else %}{{ site.name }} | {{ site.shortName }}{% endif %}</title>
|
||
|
|
<meta name="description" content="{{ description or site.description }}">
|
||
|
|
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
|
||
|
|
<link rel="icon" type="image/png" sizes="512x512" href="/assets/images/logo-512x512.png">
|
||
|
|
<link rel="apple-touch-icon" href="/assets/images/logo-512x512.png">
|
||
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{% include "partials/nav.njk" %}
|
||
|
|
|
||
|
|
{{ content | safe }}
|
||
|
|
|
||
|
|
{% include "partials/footer.njk" %}
|
||
|
|
|
||
|
|
<script src="/assets/js/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|