31 lines
687 B
Plaintext
Raw Normal View History

2019-11-11 23:53:11 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
2019-11-12 15:11:03 +01:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
2019-11-11 23:53:11 +01:00
<title>{{ renderData.title or title or metadata.title }}</title>
2019-11-12 15:11:03 +01:00
<meta
name="description"
content="{{ renderData.description or description or metadata.description }}"
>
<link
rel="stylesheet"
href="{{ 'assets/css/base.css' | url }}"
>
</head>
2019-11-11 23:53:11 +01:00
<body>
<main>
{{ content | safe }}
{% include 'components/table-of-content.njk' %}
2019-11-12 15:11:47 +01:00
<section>
2019-11-11 23:53:11 +01:00
<h2>Words</h2>
{% include 'components/defintions-list.njk' %}
2019-11-11 23:53:11 +01:00
</section>
</main>
</body>