38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
<!doctype html>
|
|
<html lang="{{ metadata.language }}" class="barebones">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title or metadata.title }}</title>
|
|
<link rel="icon" type="image/x-icon" href="/img/logo_favicon.svg">
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
|
|
|
<meta name="generator" content="{{ eleventy.generator }}">
|
|
|
|
{#- Bundle CSS #}
|
|
{%- css %}{% include "public/css/index.css" %}{% endcss %}
|
|
{# {%- css %}{% include "node_modules/prismjs/themes/prism-okaidia.css" %}{% endcss %} #}
|
|
|
|
{#- Render the CSS bundle using Inlined CSS (for the fastest site performance in production) #}
|
|
|
|
{%- css %}{% include "public/css/webfonts/webfonts.css" %}{% endcss %}
|
|
{%- css %}{% include "public/css/dropcap.css" %}{% endcss %}
|
|
<style>{% getBundle "css" %}</style>
|
|
</head>
|
|
<body class="barebones">
|
|
<a href="#skip" class="visually-hidden">Skip to main content</a>
|
|
|
|
<header>
|
|
<a href="/" class="home-link"><img src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a>
|
|
</header>
|
|
|
|
<main id="skip">
|
|
{{ content | safe }}
|
|
</main>
|
|
|
|
<footer></footer>
|
|
|
|
<!-- Current page: {{ page.url | htmlBaseUrl }} -->
|
|
</body>
|
|
</html>
|