2024-09-13 18:21:13 +02:00
|
|
|
---
|
|
|
|
eleventyComputed:
|
|
|
|
eleventyNavigation:
|
2024-10-02 15:30:46 +02:00
|
|
|
key: "{{ title | safe }}"
|
2024-09-13 18:21:13 +02:00
|
|
|
---
|
2024-09-13 17:04:16 +02:00
|
|
|
<!doctype html>
|
2024-10-02 20:30:05 +02:00
|
|
|
<html lang="{{ lang }}">
|
2024-09-13 17:04:16 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-09-26 18:23:45 +02:00
|
|
|
<title>{% if title %}{{ title }} | {% endif %}ESE {{ ese.year }}</title>
|
2024-09-15 14:58:59 +02:00
|
|
|
<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">
|
2024-09-20 13:22:58 +02:00
|
|
|
<link rel="stylesheet" href="/aileron.lite.min.css">
|
2024-09-25 18:14:18 +02:00
|
|
|
<script>
|
|
|
|
{% getBundle "js" %}
|
|
|
|
</script>
|
2024-10-02 18:18:54 +02:00
|
|
|
{% favicons '_site/ESELogoFavicon.svg' %}
|
2024-09-13 17:04:16 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-09-13 17:18:41 +02:00
|
|
|
{% include 'header.njk' %}
|
|
|
|
|
2024-09-23 14:37:40 +02:00
|
|
|
<main class="content">
|
2024-09-13 17:18:41 +02:00
|
|
|
{{ content | safe }}
|
|
|
|
</main>
|
2024-09-13 17:45:32 +02:00
|
|
|
|
|
|
|
{% include 'footer.njk' %}
|
2024-09-13 17:04:16 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
2024-09-15 14:58:59 +02:00
|
|
|
|
|
|
|
{% css %}
|
2024-09-20 17:10:24 +02:00
|
|
|
{% include "page.css" %}
|
2024-09-15 14:58:59 +02:00
|
|
|
{% endcss %}
|