ese-website/_includes/page.njk
Lyn Fugmann f10dcd9df8
Some checks failed
publish / publish (push) Failing after 4m13s
migrate to Eleventy v3 and ESM, upgrade dependencies
2024-10-06 17:58:35 +02:00

34 lines
809 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">
<meta name="generator" content="{{ eleventy.generator }}">
<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 %}