2024-09-13 17:04:16 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% if title %}{{ title }} | {% endif %}ESE {{ year }}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-09-13 17:18:41 +02:00
|
|
|
{% include 'header.njk' %}
|
|
|
|
|
|
|
|
<main>
|
|
|
|
{{ content | safe }}
|
|
|
|
</main>
|
2024-09-13 17:45:32 +02:00
|
|
|
|
|
|
|
{% include 'footer.njk' %}
|
2024-09-13 17:04:16 +02:00
|
|
|
</body>
|
|
|
|
</html>
|