33 lines
746 B
Plaintext
33 lines
746 B
Plaintext
---
|
|
eleventyComputed:
|
|
eleventyNavigation:
|
|
key: "{{ title | safe }}"
|
|
---
|
|
<!doctype html>
|
|
<html lang="{{ lang }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if title %}{{ title }} | {% endif %}ESE {{ ese.year }}</title>
|
|
<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">
|
|
<link rel="stylesheet" href="/aileron.lite.min.css">
|
|
<script>
|
|
{% getBundle "js" %}
|
|
</script>
|
|
{% favicons '_site/ESELogoFavicon.svg' %}
|
|
</head>
|
|
<body>
|
|
{% include 'header.njk' %}
|
|
|
|
<main class="content">
|
|
{{ content | safe }}
|
|
</main>
|
|
|
|
{% include 'footer.njk' %}
|
|
</body>
|
|
</html>
|
|
|
|
{% css %}
|
|
{% include "page.css" %}
|
|
{% endcss %}
|