ese-website/_includes/page.njk

32 lines
681 B
Plaintext

---
eleventyComputed:
eleventyNavigation:
key: "{{ title }}"
---
<!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>
<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">
<link rel="stylesheet" href="/aileron.lite.min.css">
<script>
{% getBundle "js" %}
</script>
</head>
<body>
{% include 'header.njk' %}
<main class="content">
{{ content | safe }}
</main>
{% include 'footer.njk' %}
</body>
</html>
{% css %}
{% include "page.css" %}
{% endcss %}