23 lines
734 B
Text
23 lines
734 B
Text
<!DOCTYPE HTML>
|
|
{% import "footer.njk" as footer %}
|
|
{% if lang == undefined %}{% set lang = 'fr' %}{% endif %}
|
|
<html lang="{{ lang }}">
|
|
<head>
|
|
<title>{{ site.title }} | {{ title }}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="author" content="David Soulayrol">
|
|
<meta name="generator" content="Metalsmith" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/css/simple.min.css">
|
|
<link rel="stylesheet" href="/css/ds.css">
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{{ contents | safe }}
|
|
{% endblock %}
|
|
<footer>
|
|
{{ footer.mentions(lang) }}
|
|
{{ footer.generated(lang, date_format(lang, site.generated)) }}
|
|
</footer>
|
|
</body>
|
|
</html>
|